aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-10-05 12:13:49 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-10-05 12:13:49 -0400
commitf529a3b0f8ee24229997e995021a2ee8cb25f065 (patch)
treee420a1ad98cc2efb2fbd9ccc566bdb131d200b8c /src
initial commit
Diffstat (limited to 'src')
-rw-r--r--src/bootstrap.s38
-rw-r--r--src/main.zig13
2 files changed, 51 insertions, 0 deletions
diff --git a/src/bootstrap.s b/src/bootstrap.s
new file mode 100644
index 0000000..22f66f0
--- /dev/null
+++ b/src/bootstrap.s
@@ -0,0 +1,38 @@
+.cpu cortex-m4
+.thumb
+
+.extern _start
+.extern fault_handler
+
+.section .text
+
+fault1:
+ mov r0, 1
+ b fault_handler
+fault2:
+ mov r0, 2
+ b fault_handler
+fault3:
+ mov r0, 3
+ b fault_handler
+fault4:
+ mov r0, 4
+ b fault_handler
+fault5:
+ mov r0, 5
+ b fault_handler
+
+.section .bss
+.skip 128
+stack_top:
+
+.section .isr_vector
+ .word stack_top
+ .word _start
+ .word fault1
+ .word fault2
+ .word fault3
+ .word fault4
+ .word fault5
+ .skip 4 * 91
+
diff --git a/src/main.zig b/src/main.zig
new file mode 100644
index 0000000..de602dd
--- /dev/null
+++ b/src/main.zig
@@ -0,0 +1,13 @@
+//! By convention, main.zig is where your main function lives in the case that
+//! you are building an executable. If you are making a library, the convention
+//! is to delete this file and start with root.zig instead.
+//const std = @import("std");
+
+export fn _start() callconv(.C) noreturn {
+ while (true) {}
+}
+
+export fn fault_handler() callconv(.C) void {
+ while (true) {}
+}
+