Changeset 181 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Initialization/DriveXlate.asm
- Timestamp:
- Nov 13, 2011, 3:38:40 PM (13 years ago)
- google:author:
- krille_n_@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Initialization/DriveXlate.asm
r148 r181 55 55 ; DL: Translated drive number 56 56 ; Corrupts registers: 57 ; Nothing57 ; AL 58 58 ;-------------------------------------------------------------------- 59 59 ALIGN JUMP_ALIGN … … 62 62 je SHORT .SwapToXXhInAL 63 63 cmp al, dl ; Swap DL from xxh to 00h/80h? 64 je SHORT .SwapTo00hOr80hInAH 65 ret 66 ALIGN JUMP_ALIGN 67 .SwapTo00hOr80hInAH: 68 mov dl, ah 69 ret 64 jne SHORT .Return 65 mov al, ah 70 66 ALIGN JUMP_ALIGN 71 67 .SwapToXXhInAL: 72 68 mov dl, al 69 ALIGN JUMP_ALIGN, ret 70 .Return: 73 71 ret 74 72 … … 83 81 ; Nothing 84 82 ; Corrupts registers: 85 ; AX83 ; Nothing 86 84 ;-------------------------------------------------------------------- 87 85 ALIGN JUMP_ALIGN
Note:
See TracChangeset
for help on using the changeset viewer.