Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,6 @@
|
|||
VRAMBASE equ 0xA1000008
|
||||
VRAMSIZE equ 0x12C00
|
||||
SCREENWIDTH equ 320
|
||||
|
||||
la $t0,VRAMBASE+SCREENWIDTH ;skip the first row of pixels
|
||||
li $t1,VRAMSIZE/2 ;we're going to fill half the screen
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
li $t0,0x27 ;trying to use li $t0,''' may confuse the assembler.
|
||||
|
||||
MyString:
|
||||
.byte "Hello World",13,10,0 ;13 = carriage return, 10 = linefeed, 0 = null terminator
|
||||
.align 4
|
||||
Loading…
Add table
Add a link
Reference in a new issue