initial commit

This commit is contained in:
2025-02-24 23:16:48 +01:00
commit 55ed793c12
26 changed files with 3045 additions and 0 deletions

6
build.rs Normal file
View File

@@ -0,0 +1,6 @@
fn main() {
// Rebuild if memory.x file was rebuild.
// Linker seems to pick it up automatically.
// (via the include in link.x which is added with a linker argument!)
println!("cargo:rerun-if-changed=memory.x");
}