Changeset 590 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS_Configurator_v2/Src
- Timestamp:
- May 25, 2016, 8:16:35 AM (9 years ago)
- Location:
- trunk/XTIDE_Universal_BIOS_Configurator_v2/Src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/MenuitemPrint.asm
r589 r590 248 248 249 249 call Menuitem_GetValueToAXfromMenuitemInDSSI 250 mov b x, 10251 CALL_DISPLAY_LIBRARY PrintWordFromAX withBaseInBX250 mov bl, 10 251 CALL_DISPLAY_LIBRARY PrintWordFromAXWithBaseInBL 252 252 jmp SHORT MenuitemPrint_FinishPrintingUnsignedOrHexValue 253 253 … … 270 270 271 271 call Menuitem_GetValueToAXfromMenuitemInDSSI 272 mov b x, 16273 CALL_DISPLAY_LIBRARY PrintWordFromAX withBaseInBX272 mov bl, 16 273 CALL_DISPLAY_LIBRARY PrintWordFromAXWithBaseInBL 274 274 mov al, 'h' 275 275 CALL_DISPLAY_LIBRARY PrintCharacterFromAL -
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Strings.asm
r589 r590 92 92 g_szNfoMainFlash: db "Flash loaded BIOS image to EEPROM.",NULL 93 93 g_szNfoMainSave: db "Save BIOS changes back to original file from which it was loaded.",NULL 94 g_szNfoMainLicense: db "XTIDE Universal BIOS and XTIDECFG Copyright (C) 2009-2010 by Tomi Tilli, 2011-201 3by XTIDE Universal BIOS Team."94 g_szNfoMainLicense: db "XTIDE Universal BIOS and XTIDECFG Copyright (C) 2009-2010 by Tomi Tilli, 2011-2016 by XTIDE Universal BIOS Team." 95 95 db " Released under GNU GPL v2, with ABSOLUTELY NO WARRANTY. Press ENTER for more details...",NULL 96 g_szNfoMainHomePage: db "Visit http:// code.google.com/p/ xtideuniversalbios (home page) and http://vintage-computer.com/ vcforum (support)",NULL96 g_szNfoMainHomePage: db "Visit http://xtideuniversalbios.org (home page) and http://vcfed.org/forum (support)",NULL 97 97 98 98 g_szHelpMainLicense: db "XTIDE Universal BIOS and XTIDECFG Configuration program are Copyright 2009-2010 by Tomi Tilli," 99 db " 2011-201 3by XTIDE Universal BIOS Team. Released under GNU GPL v2. This software comes with ABSOLUTELY NO WARRANTY."99 db " 2011-2016 by XTIDE Universal BIOS Team. Released under GNU GPL v2. This software comes with ABSOLUTELY NO WARRANTY." 100 100 db " This is free software, and you are welcome to redistribute it under certain conditions." 101 101 db " See the LICENSE.TXT file that was included with this distribution," 102 db " visit http://www.gnu.org/licenses/ gpl-2.0.html, or visit http:// code.coogle.com/p/ xtideuniversalbios.",NULL102 db " visit http://www.gnu.org/licenses/ gpl-2.0.html, or visit http://xtideuniversalbios.org.",NULL 103 103 104 104 ; Strings for XTIDE Universal BIOS configuration menu
Note:
See TracChangeset
for help on using the changeset viewer.