RosettaCodeData/Task/Empty-program/MIPS-Assembly/empty-program-2.mips

9 lines
148 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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