Changeset 524 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Initialization
- Timestamp:
- Mar 14, 2013, 2:28:30 PM (12 years ago)
- google:author:
- aitotat@gmail.com
- Location:
- trunk/XTIDE_Universal_BIOS/Src/Initialization
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Initialization/FloppyDrive.asm
r392 r524 22 22 SECTION .text 23 23 24 %ifdef COPY_13H_HANDLER_TO_40H 24 25 ;-------------------------------------------------------------------- 25 26 ; Checks is floppy drive handler installed to interrupt vector 40h. … … 103 104 %endif 104 105 106 %endif ; COPY_13H_HANDLER_TO_40H 107 105 108 106 109 ;-------------------------------------------------------------------- -
trunk/XTIDE_Universal_BIOS/Src/Initialization/Interrupts.asm
r522 r524 64 64 mov [RAMVARS.fpOldI13h], ax ; Store old INT 13h offset 65 65 66 ; NOTE! Installing INT 40h handler is currently uncommented to test 67 ; if it is really needed. I suspect that it is not. Many bytes can be 68 ; saved if INT 40h related code can be removed. 69 %if 0 70 66 %ifdef COPY_13H_HANDLER_TO_40H 71 67 ; Only store INT 13h handler to 40h if 40h is not already installed. 72 68 ; At least AMI BIOS for 286 stores 40h handler by itself and calls … … 77 73 mov [es:BIOS_DISKETTE_INTERRUPT_40h*4+2], dx ; Store old INT 13h segment 78 74 .Int40hAlreadyInstalled: 79 %endif ; 075 %endif ; COPY_13H_HANDLER_TO_40H 80 76 81 77 mov al, BIOS_DISK_INTERRUPT_13h ; INT 13h interrupt vector offset
Note:
See TracChangeset
for help on using the changeset viewer.