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

  1.     IFND    DEVICES_BOOTBLOCK_I
  2. DEVICES_BOOTBLOCK_I    SET    1
  3.     STRUCTURE    BB,0
  4.     STRUCT    BB_ID,4
  5.     LONG    BB_CHKSUM
  6.     LONG    BB_DOSBLOCK
  7.     LABEL    BB_ENTRY
  8.     LABEL    BB_SIZE
  9. BOOTSECTS    equ    2
  10. BBID_DOS    macro    *
  11.     dc.b    'DOS',0
  12.     endm
  13. BBID_KICK    macro    *
  14.     dc.b    'KICK'
  15.     endm
  16. BBNAME_DOS    EQU    (('D'<<24)!('O'<<16)!('S'<<8))
  17. BBNAME_KICK    EQU    (('K'<<24)!('I'<<16)!('C'<<8)!('K'))
  18.     ENDC
  19.