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:
Text File  |  1993-01-02  |  187 b   |  13 lines  |  [TEXT/KAHL]

  1. # This sucker loops forever writing "I can't stop!" over and over.
  2.  
  3.     .data
  4. thing:    .asciiz "I can't stop!\n"
  5.  
  6.     .text
  7.     .globl __start
  8. __start:
  9.     li $v0, 4
  10.     la $a0, thing
  11.     syscall
  12.     b __start
  13.