Changeset 61 in xtideuniversalbios
- Timestamp:
- Nov 28, 2010, 3:45:50 AM (14 years ago)
- google:author:
- aitotat
- Location:
- trunk/XTIDE_Universal_BIOS
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Doc/changes.txt
r43 r61 1 XTIDE Universal BIOS v1.1.5 (28 November 2010) 1 2 * Errors are now being checked when calling previous INT 13h handler on AH=08h Read Disk Drive Parameters. 2 3 This fixes infinite drive checking loop on unofficial MS-DOS 7.10 installer. 3 * Better INT 40h handler detection to fix floppy drive detection with AMI 286 BIOS. 4 * Better INT 40h handler detection to fix floppy drive detection with AMI 286/386 BIOS. 5 * AA55h signature no longer required when booting from floppy drives. This should make booter games work. 6 4 7 5 8 XTIDE Universal BIOS v1.1.4 (24 August 2010) -
trunk/XTIDE_Universal_BIOS/Src/Handlers/Int19h.asm
r28 r61 2 2 ; Project name : IDE BIOS 3 3 ; Created date : 3.8.2007 4 ; Last update : 1.8.20104 ; Last update : 28.11.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Int 19h BIOS functions (Boot Strap Loader). … … 74 74 call Int19h_LoadFirstSectorFromDL 75 75 jc SHORT .FailedToLoadFirstSector 76 77 test dl, 80h 78 jz SHORT .AlwaysBootFromFloppyDriveForBooterGames 76 79 cmp WORD [es:bx+510], 0AA55h ; Valid boot sector? 77 jne SHORT .FirstSectorNotBootable 80 jne SHORT .FirstHardDiskSectorNotBootable 81 .AlwaysBootFromFloppyDriveForBooterGames: 78 82 call BootPrint_BootSectorLoaded 79 83 stc … … 83 87 clc 84 88 ret 85 .First SectorNotBootable:89 .FirstHardDiskSectorNotBootable: 86 90 call BootPrint_FirstSectorNotBootable 87 91 clc -
trunk/XTIDE_Universal_BIOS/Src/Main.asm
r43 r61 2 2 ; Project name : XTIDE Universal BIOS 3 3 ; Created date : 28.7.2007 4 ; Last update : 2 4.9.20104 ; Last update : 28.11.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Main file for BIOS. This is the only file that needs … … 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 " 09/24/10" ; Build data (mm/dd/yy)40 at ROMVARS.rgbDate, db "11/28/10" ; Build data (mm/dd/yy) 41 41 at ROMVARS.rgbSign, db "XTIDE110" ; Signature for flash program 42 42 at ROMVARS.szTitle … … 49 49 db " (XT)=-",STOP 50 50 %endif 51 at ROMVARS.szVersion, db "v1.1. 4+ (09/24/10)",STOP51 at ROMVARS.szVersion, db "v1.1.5 (11/28/10)",STOP 52 52 53 53 ;---------------------------; -
trunk/XTIDE_Universal_BIOS/makefile
r38 r61 105 105 106 106 # Make clean debug and release versions 107 all: clean at xt 107 all: clean at xtplus xt 108 108 @echo All build! 109 109
Note:
See TracChangeset
for help on using the changeset viewer.