Ignore:
Timestamp:
Mar 29, 2012, 9:29:28 AM (12 years ago)
Author:
gregli@…
google:author:
gregli@hotmail.com
Message:

Removed align directives for initalization code and added define for align in boot-time calls to the assembly library (defaulting to 1), resulting in a significant savings for the AT and 386 builds. Fixed a bug with switch command line handling in the serial server. Put in CR characters in licesnse.txt, so that it properly displays on Windows. In the configurator, added default values for user supplied CHS and LBA values, defaulting to values within range when those features are enabled. Updated the copyright message in the configurator as the literal word Copyright is important.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Buffers.asm

    r293 r369  
    107107    and     WORD [g_cfgVars+CFGVARS.wFlags], ~FLG_CFGVARS_UNSAVED
    108108    ret
     109
     110;--------------------------------------------------------------------       
     111; Buffers_TestLoaded
     112;   Parameters:
     113;       SS:BP:  Menu handle
     114;   Returns:
     115;       CF:     Set = BIOS Loaded
     116;   Corrupts registers:
     117;       AX
     118;--------------------------------------------------------------------               
     119ALIGN JUMP_ALIGN
     120Buffers_TestLoaded:
     121    test    word [cs:g_cfgVars+CFGVARS.wFlags], FLG_CFGVARS_FILELOADED    ; Clears CF
     122    jz      .done
     123    stc
     124.done: 
     125    ret                     
    109126
    110127
Note: See TracChangeset for help on using the changeset viewer.