Changeset 194 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Boot/BootMenuPrintCfg.asm
- Timestamp:
- Nov 17, 2011, 11:07:58 AM (13 years ago)
- google:author:
- gregli@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Boot/BootMenuPrintCfg.asm
r193 r194 26 26 eMOVZX ax, BYTE [di+DPT.bIdevarsOffset] 27 27 xchg si, ax ; CS:SI now points to IDEVARS 28 ; Fall to PushAndFormatCfgString28 ; Fall to .PushAndFormatCfgString 29 29 30 30 ;-------------------------------------------------------------------- … … 38 38 ; AX, DX, SI, DI 39 39 ;-------------------------------------------------------------------- 40 PushAndFormatCfgString:40 .PushAndFormatCfgString: 41 41 push bp 42 42 mov bp, sp … … 53 53 ; AX, BX 54 54 ;-------------------------------------------------------------------- 55 PushAddressingMode:55 .PushAddressingMode: 56 56 CustomDPT_GetUnshiftedAddressModeToALZF 57 57 ;; … … 76 76 ; AX 77 77 ;-------------------------------------------------------------------- 78 PushBlockMode:78 .PushBlockMode: 79 79 mov ax, 1 80 80 test BYTE [di+DPT.bFlagsHigh], FLGH_DPT_BLOCK_MODE_SUPPORTED … … 94 94 ; AX, DX 95 95 ;-------------------------------------------------------------------- 96 ;PushBusType:96 .PushBusType: 97 97 mov al,g_szBusTypeValues_Displacement 98 98 mul BYTE [cs:si+IDEVARS.bDevice] … … 113 113 ; AX, DX 114 114 ;-------------------------------------------------------------------- 115 PushIRQ:115 .PushIRQ: 116 116 eMOVZX ax, BYTE [cs:si+IDEVARS.bIRQ] 117 117 push ax … … 127 127 ; AX 128 128 ;-------------------------------------------------------------------- 129 PushResetStatus:129 .PushResetStatus: 130 130 mov al, [di+DPT.bFlagsHigh] 131 131 and ax, MASKH_DPT_RESET … … 141 141 ; AX, SI, DI 142 142 ;-------------------------------------------------------------------- 143 PrintValuesFromStack:143 .PrintValuesFromStack: 144 144 mov si, g_szCfgFormat 145 145 jmp BootPrint_BootMenuPrint_FormatCSSIfromParamsInSSBP_Relay
Note:
See TracChangeset
for help on using the changeset viewer.