mirror of
https://github.com/Asraelite/littlebigcomputer.git
synced 2025-07-17 16:16:51 +00:00
11 lines
168 B
Text
11 lines
168 B
Text
# boot
|
|
|
|
.address 0
|
|
|
|
entry:
|
|
# todo: get bit representing if we're in supervisor mode and put in a0
|
|
beqz a0, user_mode_trap
|
|
b boot_sequence
|
|
user_mode_trap:
|
|
int
|
|
wfi
|