littlebigcomputer/programs/parva_0.2/boot.parva
2024-01-09 21:05:38 +01:00

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