From 8be9a0ac6bd25a1c8524bd88d910046c5d78095f Mon Sep 17 00:00:00 2001 From: Jacques Comeaux Date: Tue, 4 Jun 2024 19:37:29 -0500 Subject: Add stage 1 editor and update README --- hexedit/main.s | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 hexedit/main.s (limited to 'hexedit/main.s') diff --git a/hexedit/main.s b/hexedit/main.s new file mode 100644 index 0000000..0b49339 --- /dev/null +++ b/hexedit/main.s @@ -0,0 +1,13 @@ +.syntax unified +.cpu cortex-m0plus +.thumb + +.type main, %function +.global main + +main: + bl start_xosc + bl setup_clocks + bl setup_gpio + bl setup_uart + b SETUP -- cgit v1.2.3