home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 4: Demo 1 / almathera_demo1.bin / commercial / asmonedemo / asm-one / include / devices / bootblock.i < prev    next >
Text File  |  1995-03-16  |  337b  |  20 lines

  1.     IFND    DEVICES_BOOTBLOCK_I
  2. DEVICES_BOOTBLOCK_I    =    1
  3.     RSRESET
  4. BB        RS.B    0
  5. BB_ID        RS.B    4
  6. BB_CHKSUM    RS.L    1
  7. BB_DOSBLOCK    RS.L    1
  8. BB_ENTRY    RS.W    0
  9. BB_SIZE        RS.W    0
  10. BOOTSECTS    =    2
  11. BBID_DOS    MACRO
  12.     DC.B    'DOS',0
  13.     ENDM
  14. BBID_KICK    MACRO
  15.     DC.B    'KICK'
  16.     ENDM
  17. BBNAME_DOS    =    [['D'<<24]!['O'<<16]!['S'<<8]]
  18. BBNAME_KICK    =    [['K'<<24]!['I'<<16]!['C'<<8]!['K']]
  19.     ENDC
  20.