Ignore:
Timestamp:
Apr 12, 2014, 8:23:32 AM (11 years ago)
Author:
Ben Rietbroek
Message:

Various Changes [2012-04-14]

WARNING!!

All commits upto and including the commit of [2012-05-13] contain
a severe bug!! Building from these sources and then disabling
the 'force LBA' feature while also using the drive-letter feature or
editing the label can DESTROY THE MBR on ALL ATTACHED DISKS!!
DO NOT DISABLE 'FORCE LBA USAGE' WHEN BUILT FROM THE THESE COMMITS!!

Changes

o Added BLDLEVEL support
o Enhanced Master Make
o Sanitized sources
o Support for Wasm and Masm6 (experimental)
o Renamed MBR_PROT.ASM to MBR-PROT.ASM
o Merged bitfield code Into Installer
o First steps for cross platform Installer
o More...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BOOTCODE/SPECIAL/SOUND.ASM

    r30 r46  
    2727
    2828SOUND_PreBootMenu              Proc Near  Uses ax
    29    test    CFG_MakeSound, 1
     29   test    byte ptr [CFG_MakeSound], 1
    3030   jz      SOUND_PreBootMenu_SkipSound
    31    test    StartSoundPlayed, 1
     31   test    byte ptr [StartSoundPlayed], 1
    3232   jnz     SOUND_PreBootMenu_SkipSound
    3333   mov     ax, 1500
     
    3939   mov     ax, 200
    4040   call    SOUND_WaitToSilence
    41    mov     StartSoundPlayed, 1
     41   mov     byte ptr [StartSoundPlayed], 1
    4242  SOUND_PreBootMenu_SkipSound:
    4343   ret
     
    4545
    4646SOUND_ExecuteBoot              Proc Near  Uses ax
    47    test    CFG_MakeSound, 1
     47   test    byte ptr [CFG_MakeSound], 1
    4848   jz      SOUND_ExecuteBoot_SkipSound
    4949   mov     ax, 2000
Note: See TracChangeset for help on using the changeset viewer.