Changeset 43 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src
- Timestamp:
- Sep 24, 2010, 6:05:18 PM (14 years ago)
- google:author:
- aitotat
- Location:
- trunk/XTIDE_Universal_BIOS/Src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Handlers/Int13h.asm
r35 r43 121 121 ; Depends on function to call 122 122 ; Corrupts registers: 123 ; FLAGS123 ; Nothing 124 124 ;-------------------------------------------------------------------- 125 125 ALIGN JUMP_ALIGN -
trunk/XTIDE_Universal_BIOS/Src/Handlers/Int13h/AH8h_HParams.asm
r35 r43 2 2 ; Project name : IDE BIOS 3 3 ; Created date : 27.9.2007 4 ; Last update : 24. 8.20104 ; Last update : 24.9.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Int 13h function AH=8h, Read Disk Drive Parameters. … … 43 43 .GetDriveParametersForForeignHardDiskInDL: 44 44 call Int13h_CallPreviousInt13hHandler 45 jc SHORT .ReturnErrorFromPreviousInt13hHandler 45 46 call RamVars_GetCountOfKnownDrivesToDL 46 47 jmp Int13h_ReturnWithValueInDL 48 .ReturnErrorFromPreviousInt13hHandler: 49 jmp Int13h_PopDiDsAndReturn 47 50 48 51 -
trunk/XTIDE_Universal_BIOS/Src/Main.asm
r39 r43 2 2 ; Project name : XTIDE Universal BIOS 3 3 ; Created date : 28.7.2007 4 ; Last update : 2 6.7.20104 ; Last update : 24.9.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/ 13/10" ; Build data (mm/dd/yy)40 at ROMVARS.rgbDate, db "09/24/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/13/10)",STOP51 at ROMVARS.szVersion, db "v1.1.4+ (09/24/10)",STOP 52 52 53 53 ;---------------------------;
Note:
See TracChangeset
for help on using the changeset viewer.