RosettaCodeData/Task/Empty-program/MIPS-Assembly/empty-program-2.mips
2023-07-01 13:44:08 -04:00

8 lines
148 B
Text

la $t0,0xBFC007FC
li $t1,8
sw $t1,0($t0)
halt:
nop ;not actually needed by real hardware, but Project 64 doesn't like infinite loops.
b halt
nop