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


Ignore:
Timestamp:
Dec 13, 2012, 7:32:09 AM (11 years ago)
Author:
gregli@…
google:author:
gregli@hotmail.com
Message:

Added version string to initial title banner, for cases where there is not a boot menu (just hotkeys, or no hotkeys). Also ifdef'd out some unused code.

File:
1 edited

Legend:

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

    r488 r489  
    2727; POST drive detection strings
    2828g_szDashForZero:    db  "- ",NULL   ; Required by Display Library
    29 g_szRomAt:          db  LF,CR,"%s @ %x",LF,CR
    30                     db  "Released under GNU GPL v2",LF,CR,LF,CR,NULL
    31 
     29g_szRomAt:          db  LF,CR
     30                    db  "%s @ %x",LF,CR                     ; -=XTIDE ... =- @ Segment
     31                    db  "%s",LF,CR                          ; version string
     32                    db  "Released under GNU GPL v2",LF,CR   
     33                    db  LF,CR,NULL
     34%ifdef MODULE_BOOT_MENU
     35g_szBootMenuTitle:  db  "%s%c",LF,CR                        ; -=XTIDE ... =- and null (eaten)
     36                    db  "%s",NULL                           ; version string
     37%endif
     38g_szDriveName:      db  "%z",LF,CR,NULL
    3239
    3340; The following strings are used by DetectPrint_StartDetectWithMasterOrSlaveStringInCXandIdeVarsInCSBP
     
    166173
    167174g_szSelectionTimeout:   db      DOUBLE_BOTTOM_LEFT_CORNER,DOUBLE_LEFT_HORIZONTAL_TO_SINGLE_VERTICAL,"%ASelection in %2-u s",NULL
    168 
    169175
    170176
Note: See TracChangeset for help on using the changeset viewer.