home *** CD-ROM | disk | FTP | other *** search
- ;these are the basic macro definitions used
- ;------------------------------------------
-
- BOOTSEG equ 0x7c0 ; boot sector where BIOS loads the bootsect
- BOOTSIG equ 0xAA55 ; boot signature (ie magic #) at end of
-
- STACKSEG equ 0x800 ; give us enough room for stack
- STACKSIZE equ 0x1000 ; 1000h = 4k stack size
-
- NEWSEG equ 0x1000 ; where 2nd stage boot loader will be put
- NEWSTACKSEG equ 0x1050 ; load stack at 1050:XXXX (0x10500)
-