Changeset 88 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Main.asm
- Timestamp:
- Jan 27, 2011, 8:14:13 AM (14 years ago)
- google:author:
- aitotat
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Main.asm
r86 r88 13 13 14 14 ; Included .inc files 15 %include " emulate.inc" ;Must be included first!16 %include "macros.inc" ; For genericmacros15 %include "AssemblyLibrary.inc" ; Assembly Library. Must be included first! 16 %include "macros.inc" ; General purpose macros 17 17 %include "BiosData.inc" ; For BIOS Data area equates 18 18 %include "Interrupts.inc" ; For interrupt equates … … 38 38 at ROMVARS.bRomSize, db CNT_ROM_BLOCKS ; ROM size in 512B blocks 39 39 at ROMVARS.rgbJump, jmp Initialize_FromMainBiosRomSearch 40 at ROMVARS.rgbDate, db " 11/28/10" ; Build data (mm/dd/yy)41 at ROMVARS.rgbSign, db "XTIDE1 10" ; Signature for flash program40 at ROMVARS.rgbDate, db "01/27/11" ; Build data (mm/dd/yy) 41 at ROMVARS.rgbSign, db "XTIDE120" ; Signature for flash program 42 42 at ROMVARS.szTitle 43 43 db "-=XTIDE Universal BIOS" 44 44 %ifdef USE_AT 45 db " (AT)=-", STOP45 db " (AT)=-",NULL 46 46 %elifdef USE_186 47 db " (XT+)=-", STOP47 db " (XT+)=-",NULL 48 48 %else 49 db " (XT)=-", STOP49 db " (XT)=-",NULL 50 50 %endif 51 at ROMVARS.szVersion, db "v1. 1.5 (11/28/10)",STOP51 at ROMVARS.szVersion, db "v1.2.0_wip (01/27/11)",NULL 52 52 53 53 ;---------------------------; … … 58 58 at ROMVARS.bIdeCnt, db 3 ; Number of supported controllers 59 59 at ROMVARS.bBootDrv, db 80h ; Boot Menu default drive 60 at ROMVARS.bBootMnuH, db 20 ; Boot Menu maximum height61 60 at ROMVARS.bBootDelay, db 30 ; Boot Menu selection delay (secs) 62 61 at ROMVARS.bBootLdrType, db BOOTLOADER_TYPE_MENU ; Boot loader type … … 91 90 at ROMVARS.bIdeCnt, db 1 ; Number of supported controllers 92 91 at ROMVARS.bBootDrv, db 80h ; Boot Menu default drive 93 at ROMVARS.bBootMnuH, db 20 ; Boot Menu maximum height94 92 at ROMVARS.bBootDelay, db 30 ; Boot Menu selection delay (secs) 95 93 at ROMVARS.bBootLdrType, db BOOTLOADER_TYPE_MENU ; Boot loader type … … 108 106 109 107 ; Include .asm files (static data and libraries) 108 %include "AssemblyLibrary.asm" 110 109 %include "Strings.asm" ; For BIOS message strings 111 %include "math.asm" ; For Math library112 %include "string.asm" ; For String library113 %include "print.asm" ; For Print library114 %include "keys.asm" ; For keyboard library (required by menu library)115 %include "menu.asm" ; For menu library116 %include "PrintString.asm" ; Customized printing for this BIOS117 %include "SoftDelay.asm" ; For software delay loops118 110 119 111 ; Include .asm files (Initialization and drive detection) … … 178 170 179 171 ; Fill with zeroes until size is what we want 180 times (CNT_ROM_BLOCKS*512)-($-$$) db 0172 ;times (CNT_ROM_BLOCKS*512)-($-$$) db 0
Note:
See TracChangeset
for help on using the changeset viewer.