Changeset 293 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/BiosFile.asm
- Timestamp:
- Mar 4, 2012, 1:33:52 AM (13 years ago)
- google:author:
- krille_n_@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/BiosFile.asm
r181 r293 27 27 call Buffers_NewBiosWithSizeInDXCXandSourceInAXhasBeenLoadedForConfiguration 28 28 call FileIO_CloseUsingHandleFromBX 29 call DisplayFileLoadedSucces fully29 call DisplayFileLoadedSuccessfully 30 30 jmp SHORT .Return 31 31 … … 43 43 ; DS:SI: Name of file to open 44 44 ; Returns: 45 ; BX: File handle (if succes full)46 ; DX:CX: File size (if succes full)47 ; CF: Clear if successful l45 ; BX: File handle (if successful) 46 ; DX:CX: File size (if successful) 47 ; CF: Clear if successful 48 48 ; Set if error 49 49 ; Corrupts registers: … … 80 80 ; DS:SI: File name 81 81 ; Returns: 82 ; CF: Clear if successful l82 ; CF: Clear if successful 83 83 ; Set if error 84 84 ; Corrupts registers: … … 167 167 call FileIO_CloseUsingHandleFromBX 168 168 call Buffers_ClearUnsavedChanges 169 call DisplayFileSavedSucces fully169 call DisplayFileSavedSuccessfully 170 170 jmp SHORT .Return 171 171 … … 181 181 182 182 ;-------------------------------------------------------------------- 183 ; DisplayFileLoadedSucces fully184 ; DisplayFileSavedSucces fully183 ; DisplayFileLoadedSuccessfully 184 ; DisplayFileSavedSuccessfully 185 185 ; DisplayFailedToLoadFile 186 186 ; DisplayFailedToSaveFile … … 194 194 ;-------------------------------------------------------------------- 195 195 ALIGN JUMP_ALIGN 196 DisplayFileLoadedSucces fully:196 DisplayFileLoadedSuccessfully: 197 197 mov dx, g_szDlgMainLoadFile 198 198 jmp Dialogs_DisplayNotificationFromCSDX 199 199 200 200 ALIGN JUMP_ALIGN 201 DisplayFileSavedSucces fully:201 DisplayFileSavedSuccessfully: 202 202 mov dx, g_szDlgMainSaveFile 203 203 jmp Dialogs_DisplayNotificationFromCSDX
Note:
See TracChangeset
for help on using the changeset viewer.