Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
33
Task/Loops-Infinite/MIPS-Assembly/loops-infinite.mips
Normal file
33
Task/Loops-Infinite/MIPS-Assembly/loops-infinite.mips
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
.include "\SrcAll\Header.asm"
|
||||
.include "\SrcAll\BasicMacros.asm"
|
||||
.include "\SrcPSX\MemoryMap.asm"
|
||||
.include "\SrcN64\MemoryMap.asm"
|
||||
|
||||
CursorX equ 0x100
|
||||
CursorY equ 0x101
|
||||
|
||||
main:
|
||||
la a0,MyString
|
||||
jal PrintString
|
||||
nop
|
||||
jal NewLine
|
||||
nop
|
||||
j main
|
||||
nop
|
||||
|
||||
MyString:
|
||||
.byte "SPAM",255,0,0,0 ;the 3 zeroes are padding to ensure proper alignment.
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
MyFont:
|
||||
.ifdef buildn64
|
||||
.incbin "\ResN64\ChibiAkumas.fnt"
|
||||
.endif
|
||||
.ifdef buildPSX
|
||||
.incbin "\ResPSX\ChibiAkumas.fnt"
|
||||
.endif
|
||||
|
||||
.include "\SrcALL\graphics.asm"
|
||||
|
||||
.include "..\\SrcAll\monitor.asm"
|
||||
.include "\SrcN64\Footer.asm"
|
||||
Loading…
Add table
Add a link
Reference in a new issue