Changeset 248 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Main.asm


Ignore:
Timestamp:
Feb 13, 2012, 1:22:18 PM (12 years ago)
Author:
aitotat@…
google:author:
aitotat@gmail.com
Message:

Changes to XTIDE Universal BIOS:

  • Booting with hotkey now properly maintains FD and HD drive swappings (it is now again possible to boot with both translated FD and HD drives).
  • Had to change file orders so compressed strings could be included after recent changes to Assembly Library size.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Src/Main.asm

    r243 r248  
    154154iend
    155155
    156     ; Libraries and data
     156    ; Libraries, data, Initialization and drive detection
    157157    %include "AssemblyLibrary.asm"
    158 %ifdef MODULE_STRINGS_COMPRESSED
    159     %include "StringsCompressed.asm"
    160 %else
    161     %include "Strings.asm"          ; For BIOS message strings
    162 %endif
    163 
    164     ; Initialization and drive detection
    165158    %include "Initialize.asm"       ; For BIOS initialization
    166159    %include "Interrupts.asm"       ; For Interrupt initialization
    167160    %include "RamVars.asm"          ; For RAMVARS initialization and access
     161%ifdef MODULE_STRINGS_COMPRESSED
     162    %include "StringsCompressed.asm"
     163%else
     164    %include "Strings.asm"          ; For BIOS message strings
     165%endif
    168166    %include "CreateDPT.asm"        ; For creating DPTs
    169167    %include "FindDPT.asm"          ; For finding DPTs
     
    173171    %include "DetectDrives.asm"     ; For detecting IDE drives
    174172    %include "DetectPrint.asm"      ; For printing drive detection strings
    175        
     173
    176174    ; Boot menu
    177175    %include "BootMenu.asm"         ; For Boot Menu operations
Note: See TracChangeset for help on using the changeset viewer.