summaryrefslogtreecommitdiff
path: root/src/crt0.S
diff options
context:
space:
mode:
authortaitep <taitep@taitep.se>2026-01-29 21:27:36 +0100
committertaitep <taitep@taitep.se>2026-01-29 21:27:36 +0100
commit4f32bbc46a48276bba949364dc44d532c19dae78 (patch)
tree8f54108788735efff25a4a9549bedbe7967d3c7b /src/crt0.S
parent25bec21f20208a9369656a337cf5325e7b3a5a8d (diff)
i think i managed to make a working uart driver for the new interface??HEADmain
Diffstat (limited to 'src/crt0.S')
-rw-r--r--src/crt0.S3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/crt0.S b/src/crt0.S
index 97228c1..49d8493 100644
--- a/src/crt0.S
+++ b/src/crt0.S
@@ -62,6 +62,9 @@ _start:
#endif
call __libc_init_array # Run global initialization functions
+ # initialize UART
+ call uart_init
+
call main
call exit
_exit: j _exit