Changeset 223


Ignore:
Timestamp:
Nov 9, 2017, 11:25:54 PM (8 years ago)
Author:
Ben Rietbroek
Message:

Fixed non-functional TAB-key caused by disabling FX [v1.1.3-testing]

CAUTION:
This is a testbuild !
AirBoot uses the BIOS to access disks and a small coding error can trash
partition tables or other vital disk structures. You are advised to make
backups of TRACK0 and EBRs before using this testbuild. More info at:
https://rousseaux.github.io/netlabs.air-boot/pdf/AirBoot-v1.1.2-manual.pdf

Location:
trunk/bootcode
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/bootcode/airboot.md5

    r222 r223  
    1 6d12a524227902466ab26d98476969bc  airboot.bin
     11e8db9084198aa43164cf74b424f10e8  airboot.bin
  • trunk/bootcode/regular/bootmenu.asm

    r177 r223  
    12101210    BME_KeyTAB:
    12111211        push    dx
     1212
     1213; While the FX-module is excluded from newer versions, we want to retain
     1214; the option of enabling it.
     1215IFDEF   FX_ENABLED
    12121216        test    byte ptr [CFG_CooperBars], 1
    12131217        jnz     BME_KeyTAB_ShowFX
     1218ENDIF
     1219
    12141220        mov     ax, 0501h                  ; Go To Page 1 -> BIOS POST crap
    12151221        int     10h
  • trunk/bootcode/regular/other.asm

    r200 r223  
    264264        ;  Delay for some time and get Strg/Alt State
    265265        ; ============================================
     266
     267; While the FX-module is excluded from newer versions, we want to retain
     268; the option of enabling it.
     269IFDEF   FX_ENABLED
    266270        test    byte ptr [CFG_CooperBars], 1
    267271        jnz     PCM_ShortDelay
     272ENDIF
     273
    268274        mov     al, 27                        ; About 1.5 seconds
    269275        test    byte ptr [CFG_FloppyBootGetName], 1
Note: See TracChangeset for help on using the changeset viewer.