From f2f186c3594a922e51abf25b24052c61f833a2bf Mon Sep 17 00:00:00 2001 From: Jacques Comeaux Date: Tue, 4 Jun 2024 19:28:25 -0500 Subject: Rename stage 0 editor --- octedit/main.s | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 octedit/main.s (limited to 'octedit/main.s') diff --git a/octedit/main.s b/octedit/main.s new file mode 100644 index 0000000..6c471ec --- /dev/null +++ b/octedit/main.s @@ -0,0 +1,18 @@ +.syntax unified +.cpu cortex-m0plus +.thumb + +.section .entry, "ax" + +.type main, %function +.global main + +main: + bl start_xosc + bl setup_clocks + bl setup_gpio + bl setup_uart + b octedit + +.section .stage_2_crc +.word 0x00000000 -- cgit v1.2.3