Changeset 68 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages/MainMenu.asm
- Timestamp:
- Dec 9, 2010, 6:36:00 PM (14 years ago)
- google:author:
- aitotat
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages/MainMenu.asm
r59 r68 2 2 ; Project name : XTIDE Universal BIOS Configurator v2 3 3 ; Created date : 6.10.2010 4 ; Last update : 19.11.20104 ; Last update : 9.12.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Main menu structs and functions. … … 226 226 LoadXtideUniversalBiosFromRom: 227 227 call Buffers_SaveChangesIfFileLoaded 228 call EEPROM_LoadXtideUniversalBiosFromRomToRamBuffer 228 call EEPROM_LoadXtideUniversalBiosFromRomToRamBufferAndReturnSizeInDXCX 229 229 mov ax, FLG_CFGVARS_ROMLOADED 230 call Buffers_NewBiosWithSizeInCXandSourceInAXhasBeenLoadedForConfiguration 231 push cs 232 pop ds 233 mov si, g_szDlgMainLoadROM 234 CALL_MENU_LIBRARY DisplayMessageWithInputInDSSI 235 ret 230 call Buffers_NewBiosWithSizeInDXCXandSourceInAXhasBeenLoadedForConfiguration 231 mov dx, g_szDlgMainLoadROM 232 jmp Dialogs_DisplayNotificationFromCSDX 236 233 237 234 … … 241 238 call EEPROM_LoadOldSettingsFromRomToRamBuffer 242 239 and WORD [g_cfgVars+CFGVARS.wFlags], ~FLG_CFGVARS_UNSAVED 243 push cs 244 pop ds 245 mov si, g_szDlgMainLoadStngs 246 CALL_MENU_LIBRARY DisplayMessageWithInputInDSSI 247 ret 240 mov dx, g_szDlgMainLoadStngs 241 jmp Dialogs_DisplayNotificationFromCSDX
Note:
See TracChangeset
for help on using the changeset viewer.