summaryrefslogtreecommitdiff
path: root/main.asm
diff options
context:
space:
mode:
Diffstat (limited to 'main.asm')
-rw-r--r--main.asm5
1 files changed, 1 insertions, 4 deletions
diff --git a/main.asm b/main.asm
index 3ae0850..2d41e48 100644
--- a/main.asm
+++ b/main.asm
@@ -13,13 +13,10 @@ l1:
ret
_main:
- csrr a0, mhartid
-
la a0, my_str
call print
- li a0, 0
- ecall
+halt: j halt
.section .rodata
my_str: .string "Hello, world!\n"