1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-21 23:56:18 +04:00

Generate vector.asm by build.rs.

This commit is contained in:
WangRunji 2018-05-20 23:56:41 +08:00
parent 7d644966d2
commit f7bdfa2913
3 changed files with 69 additions and 1318 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
build
target
Cargo.lock
Cargo.lock
/src/arch/x86_64/boot/vector.asm

View File

@ -1,9 +1,37 @@
extern crate cc;
use std::fs::File;
use std::io::{Write, Result};
fn main() {
cc::Build::new()
.file("src/arch/x86_64/driver/apic/lapic.c")
.file("src/arch/x86_64/driver/keyboard/keyboard.c")
.flag("-mcmodel=large")
.compile("cobj");
gen_vector_asm().unwrap();
}
fn gen_vector_asm() -> Result<()> {
let mut f = File::create("src/arch/x86_64/boot/vector.asm").unwrap();
writeln!(f, "# generated by build.rs - do not edit")?;
writeln!(f, "section .text")?;
writeln!(f, "extern __alltraps")?;
for i in 0..256 {
writeln!(f, "vector{}:", i)?;
if !(i == 8 || (i >= 10 && i <= 14) || i == 17) {
writeln!(f, "\tpush 0")?;
}
writeln!(f, "\tpush {}", i)?;
writeln!(f, "\tjmp __alltraps")?;
}
writeln!(f, "\nsection .rodata")?;
writeln!(f, "global __vectors")?;
writeln!(f, "__vectors:")?;
for i in 0..256 {
writeln!(f, "\tdq vector{}", i)?;
}
Ok(())
}

File diff suppressed because it is too large Load Diff