home *** CD-ROM | disk | FTP | other *** search
/ Power Hacker 2003 / Power_Hacker_2003.iso / Exploit and vulnerability / w00w00 / w00os / shared / include / boot.inc next >
Encoding:
Text File  |  1998-12-31  |  458 b   |  12 lines

  1. ;these are the basic macro definitions used 
  2. ;------------------------------------------
  3.  
  4. BOOTSEG equ 0x7c0               ; boot sector where BIOS loads the bootsect
  5. BOOTSIG    equ 0xAA55        ; boot signature (ie magic #) at end of
  6.  
  7. STACKSEG equ 0x800        ; give us enough room for stack
  8. STACKSIZE equ 0x1000        ; 1000h = 4k stack size
  9.  
  10. NEWSEG equ 0x1000        ; where 2nd stage boot loader will be put
  11. NEWSTACKSEG equ 0x1050        ; load stack at 1050:XXXX (0x10500)
  12.