home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Mania 2
/
MacMania 2.toast
/
Demo's
/
Tools&Utilities
/
Programming
/
SPIM Folder
/
Examples
/
loop.s
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-01-02
|
187 b
|
13 lines
|
[
TEXT/KAHL
]
# This sucker loops forever writing "I can't stop!" over and over.
.data
thing: .asciiz "I can't stop!\n"
.text
.globl __start
__start:
li $v0, 4
la $a0, thing
syscall
b __start