home *** CD-ROM | disk | FTP | other *** search
/ ticalc.org / ticalc_org_rev_b.iso / archives / 89 / asm / source / jingle.asm < prev    next >
Encoding:
Assembly Source File  |  2001-07-01  |  821 b   |  30 lines

  1.     include "sndlib.h"
  2.     include "tios.h"
  3.     include "util.h"
  4.     xdef _main
  5.     xdef _comment
  6.     xdef _ti89
  7.     
  8.  
  9.  
  10. _main:
  11.     lea        song(PC),a0
  12.     jsr        sndlib::PlaySong
  13.     rts    
  14.  
  15.  
  16. song    dc.l $40000
  17.     dc.b 2,4,11,4,9,4,7,4,2,4,99,4,2,8,2,8,2,4,11,4,9,4,7,4,4,4,99,4,4,4
  18.     dc.b 4,4,12,4,11,4,9,4,14,4,99,4,14,4,16,4,14,4,12,4,9,4,11,2,99,4,2,4
  19.     dc.b 2,4,11,4,9,4,7,4,2,4,99,4,2,8,2,8,2,4,11,4,9,4,7,4,4,4,99,4,4,4
  20.     dc.b 4,4,12,4,11,4,9,4,14,4,14,4,14,4,14,4,16,4,14,4,12,4,9,4,7,4,99,2
  21.     dc.b 11,4,11,4,11,2,11,4,11,4,11,2,11,4,14,4,7,4,9,8,11,4,99,4,12,4,12,4,12,4,12,8,12,4,11,4,11,4,11,8,11,8
  22.     dc.b 11,4,9,4,9,4,7,4,9,2,14,2,11,4,11,4,99,32,11,2,11,4,11,4,11,4,11,4,14,4,7,4,9,8,11,2,99,2
  23.     dc.b 12,4,12,4,12,4,12,8,12,4,11,4,11,4,11,8,11,8,14,4,14,4,14,4,9,4,7,2,255
  24.  
  25.  
  26.  
  27.  
  28. _comment dc.b "Jingle Bells by Bentensai",0
  29.  
  30.     end