home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff343.lzh / SnakePit / SnakePitSrc.lzh / Pit_Stuff.ASM < prev    next >
Assembly Source File  |  1988-07-04  |  1KB  |  46 lines

  1. ;* Pit_Stuff.asm - MKSoft SnakePit  Copyright (c) 1988 by Michael Sinz
  2. ;*
  3. ;* These are the default values of the following structures:
  4. ;*
  5. ;*    ScoreList_rec    ScoreList[8]
  6. ;*    KeyList_rec    KeyList[4]
  7. ;*    Pit_Screen    All_Pit_Screens[MAX_LEVEL]
  8. ;*
  9.     far    code
  10.     cseg
  11.     ds    0
  12.     public    _ScoreList
  13. _ScoreList:
  14.     dc.b    0,42,32,83,110,97,107,101,80,105,116,32,42,42,0,0
  15.     dc.l    $0000
  16.     dc.b    0,32,32,67,111,112,121,114,105,103,104,116,32,32,0,0
  17.     dc.l    $0000
  18.     dc.b    0,32,32,32,169,32,49,57,56,56,32,32,32,32,0,0
  19.     dc.l    $0000
  20.     dc.b    0,32,32,32,32,32,98,121,32,32,32,32,32,32,0,0
  21.     dc.l    $0000
  22.     dc.b    0,77,105,99,104,97,101,108,32,83,105,110,122,32,0,0
  23.     dc.l    $0000
  24.     dc.b    0,45,45,45,45,45,45,45,45,45,45,45,45,45,0,0
  25.     dc.l    $0000
  26.     dc.b    0,32,32,32,77,75,83,111,102,116,32,32,32,32,0,0
  27.     dc.l    $0000
  28.     dc.b    0,32,68,101,118,101,108,111,112,109,101,110,116,32,0,0
  29.     dc.l    $0000
  30.     ds    0
  31. ;
  32. ; The KeyList structure
  33.     public    _KeyList
  34. _KeyList:
  35.     dc.b    85,80,0,76
  36.     dc.b    68,78,0,77
  37.     dc.b    76,70,0,79
  38.     dc.b    82,84,0,78
  39.     ds    0
  40. ;
  41. ; The All_Pit_Screens structure
  42.     public    _All_Pit_Screens
  43. _All_Pit_Screens:
  44.     INCLUDE    'Screen.ASM'
  45.     end
  46.