Changeset 415 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Strings.asm


Ignore:
Timestamp:
May 3, 2012, 2:33:46 PM (12 years ago)
Author:
aitotat@…
google:author:
aitotat@gmail.com
Message:

Changes to XTIDE Universal BIOS:

  • Strings.asm updated for MODULE_BOOT_MENU and MODULE_HOTKEYS.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Src/Strings.asm

    r392 r415  
    2525SECTION .text
    2626
     27; POST drive detection strings
     28g_szDashForZero:    db  "- ",NULL   ; Required by Display Library
     29g_szRomAt:          db  LF,CR,"%s @ %x",LF,CR
     30                    db  "Released under GNU GPL v2",LF,CR,LF,CR,NULL
     31
     32
    2733; The following strings are used by DetectPrint_StartDetectWithMasterOrSlaveStringInCXandIdeVarsInCSBP
    2834; To support an optimization in that code, these strings must start on the same 256 byte page,
     
    3339g_szDetectSlave:        db  "Slave ",NULL
    3440g_szDetectOuter:        db  "%s at %s: ",NULL
    35 ;%%; %ifdef MODULE_SERIAL       ;%%; is stripped off after string compression, %ifdef won't compress properly
     41%ifdef MODULE_SERIAL
    3642g_szDetectCOM:          db  "COM%c%s",NULL
    3743g_szDetectCOMAuto:      db  " Detect",NULL
    3844g_szDetectCOMSmall:     db  "/%u%u00",NULL                  ; IDE Master at COM1/9600:
    3945g_szDetectCOMLarge:     db  "/%u.%uK",NULL                  ; IDE Master at COM1/19.2K:
    40 ;%%; %endif                     ;%%; is stripped off after string compression, %ifdef won't compress properly
     46%endif
    4147g_szDetectEnd:
    4248g_szDetectPort:         db  "%x",NULL                       ; IDE Master at 1F0h:
     
    4753    %endif
    4854%endif
     55
     56
     57; Boot loader strings
     58g_szTryToBoot:          db  "Booting %c",ANGLE_QUOTE_RIGHT,"%c",LF,CR,NULL
     59g_szBootSectorNotFound: db  "Boot sector "
     60g_szNotFound:           db  "not found",LF,CR,NULL
     61g_szReadError:          db  "Error %x!",LF,CR,NULL
     62
     63
     64%ifdef MODULE_HOTKEYS
     65
     66; Hotkey Bar strings
     67g_szFDD:        db  "FDD [%c]",NULL         ; "FDD [A]"
     68g_szHDD:        db  "HDD [%c]",NULL         ; "HDD [C]"
     69g_szBootMenu:   db  "%sMnu",NULL            ; "BootMnu"
     70g_szRomBoot:    db  "Rom%s",NULL            ; "RomBoot"
     71g_szBoot:       db  "Boot",NULL
     72g_szHotkey:     db  "%A%c%c%A%s%A ",NULL    ; "C»HDD [A] ", "F2BootMnu " or "F8RomBoot "
     73
     74
     75%ifdef MODULE_BOOT_MENU
    4976
    5077; Boot Menu Floppy Disk strings
     
    6794    %endif
    6895%endif
    69 
    70 ; POST drive detection strings
    71 g_szRomAt:      db  "%s @ %x",LF,CR
    72                 db  "Released under GNU GPL v2",LF,CR,LF,CR,NULL
    73 
    74 ; Boot loader strings
    75 g_szTryToBoot:          db  "Booting %c",ANGLE_QUOTE_RIGHT,"%c",LF,CR,NULL
    76 g_szBootSectorNotFound: db  "Boot sector "
    77 g_szNotFound:           db  "not found",LF,CR,NULL
    78 g_szReadError:          db  "Error %x!",LF,CR,NULL
    7996
    8097
     
    141158g_szSelectionTimeout:   db      DOUBLE_BOTTOM_LEFT_CORNER,DOUBLE_LEFT_HORIZONTAL_TO_SINGLE_VERTICAL,"%ASelection in %2-u s",NULL
    142159
    143 g_szDashForZero:        db      "- ",NULL
    144 
    145 ; Boot menu bottom of screen strings
    146 g_szFDD:        db  "FDD [%c]",NULL         ; "FDD [A]"
    147 g_szHDD:        db  "HDD [%c]",NULL         ; "HDD [C]"
    148 g_szBootMenu:   db  "%sMnu",NULL            ; "BootMnu"
    149 g_szRomBoot:    db  "Rom%s",NULL            ; "RomBoot"
    150 g_szBoot:       db  "Boot",NULL
    151 g_szHotkey:     db  "%A%c%c%A%s%A ",NULL    ; "C»HDD [A] ", "F2BootMnu " or "F8RomBoot "
     160
     161
    152162
    153163; Boot Menu information strings
     
    158168    db     "%s",SINGLE_VERTICAL, "%5-u",SINGLE_VERTICAL, "%s",SINGLE_VERTICAL," %2-I",SINGLE_VERTICAL,"%5-x" ,NULL
    159169
     170
    160171; Boot Menu menuitem strings
    161172;
     
    176187    %endif
    177188%endif
    178        
     189
     190%endif ; MODULE_BOOT_MENU
     191%endif ; MODULE_HOTKEYS
     192
     193
    179194;------------------------------------------------------------------------------------------
    180195;
Note: See TracChangeset for help on using the changeset viewer.