working zig on tiva tm4c

This commit is contained in:
Filipriec
2026-03-09 10:20:42 +01:00
parent d8b4c8e8cf
commit f3e7cbb83a
3 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
const cmsis = @cImport({
@cInclude("TM4C123GH6PM.h");
});
pub fn main() noreturn {
while (true) {}
}
pub fn panic(_: []const u8, _: ?*@import("std").builtin.StackTrace, _: ?usize) noreturn {
while (true) {}
}