1
0
forked from Rativel/BurritOS

Started to implement syscall.rs

This commit is contained in:
Rémi Rativel
2023-03-29 17:16:08 +02:00
parent e117ec2132
commit 8e81358e51
5 changed files with 38 additions and 2 deletions

5
build.rs Normal file
View File

@@ -0,0 +1,5 @@
fn main() {
cc::Build::new()
.file("test/userlib/sys.s")
.compile("my-asm-lib");
}