Changeset 181 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages
- Timestamp:
- Nov 13, 2011, 3:38:40 PM (13 years ago)
- google:author:
- krille_n_@hotmail.com
- Location:
- trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages/ConfigurationMenu.asm
r153 r181 168 168 call .GetIdeControllerCountToCX 169 169 dec cx ; Primary always enabled 170 j cxz.PrimaryControllerAlreadyEnabled170 jz .PrimaryControllerAlreadyEnabled 171 171 mov bx, g_MenuitemConfigurationSecondaryIdeController 172 172 ALIGN JUMP_ALIGN … … 191 191 call Buffers_GetRomvarsFlagsToAX 192 192 test ax, FLG_ROMVARS_FULLMODE 193 mov al, 1 ; Assume lite mode 193 194 jz SHORT .AllowOnlyOneIdeControllerInLiteMode 194 195 195 196 mov bx, ROMVARS.bIdeCnt 196 197 call Buffers_GetRomvarsValueToAXfromOffsetInBX 197 eMOVZX cx, al198 ret199 198 ALIGN JUMP_ALIGN 200 199 .AllowOnlyOneIdeControllerInLiteMode: 201 mov cx, 1 200 cbw ; A maximum of 127 controllers should be sufficient 201 xchg cx, ax 202 202 ret 203 203 -
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages/FlashMenu.asm
r159 r181 390 390 mov al, 0FEh ; System reset (AT+ keyboard controller) 391 391 out 64h, al ; Reset computer (AT+) 392 mov a x, 10392 mov al, 10 393 393 call Delay_MicrosecondsFromAX 394 394 .ResetXT:
Note:
See TracChangeset
for help on using the changeset viewer.