home *** CD-ROM | disk | FTP | other *** search
/ ticalc.org / ticalc_org_rev_b.iso / archives / 86 / asm / source / phatlvls.asm < prev    next >
Encoding:
Assembly Source File  |  2001-07-01  |  1.8 KB  |  49 lines

  1.          .include "asm86.h"
  2.          .include "ti86asm.inc"
  3.          .org     _asm_exec_ram
  4.  
  5.          nop
  6.          jp       start
  7.          .dw      0
  8.          .dw      name
  9.  
  10. start:   ld       hl,$4FD0
  11.          ld       ($c012),hl
  12.          ld       de,$c014
  13.          ld       hl,map
  14.          ld       bc,96
  15.          ldir
  16.          ret
  17.  
  18.  
  19. name:    .db      "Extra levels for Orzunoid",0
  20. map:
  21.          .db      %00000100,%00000001,%01000000,%00010000
  22.          .db      %00011001,%00000110,%10010000,%01100100
  23.          .db      %00011001,%00000110,%10010000,%01100100
  24.          .db      %00011001,%00000110,%10010000,%01100100
  25.          .db      %00011001,%00000110,%10010000,%01100100
  26.          .db      %00011001,%00000110,%10010000,%01100100
  27.          .db      %01111111,%01011111,%11110101,%11111101
  28.          .db      %00000000,%00000000,%00000000,%00000000
  29.  
  30.          .DB      %01100110,%01100110,%10011001,%10011001
  31.          .DB      %01000100,%01000101,%01010001,%00010001
  32.          .DB      %00000000,%00000000,%00000000,%00000000
  33.          .DB      %00000000,%11110101,%01011111,%00000000
  34.          .DB      %00000000,%00000000,%00000000,%00000000
  35.          .DB      %00000101,%01110111,%11011101,%01010000
  36.          .DB      %00000000,%00000000,%00000000,%00000000
  37.          .db      %01010101,%11011101,%01110111,%01010101
  38.  
  39.          .db      %01010101,%01010101,%01010101,%01010101
  40.          .db      %01000000,%00000000,%00000000,%00000001
  41.          .db      %01001010,%10001010,%10100010,%00100001
  42.          .db      %01001000,%00000000,%10000010,%10100001
  43.          .db      %01001000,%00001000,%10000010,%10100001
  44.          .db      %01001010,%10001010,%10000010,%00100001
  45.          .db      %01000000,%00000000,%00000000,%00000001
  46.          .db      %11110111,%01110111,%11011101,%11011111
  47.                           
  48.          .end
  49.