source: xtideuniversalbios/trunk/Assembly_Library/Src/Menu/Dialog/StringsForDialogs.asm @ 54

Last change on this file since 54 was 54, checked in by aitotat, 14 years ago

Changes to Assembly Library:
Drive selection moved to own dialog from File Dialog.
File Dialog now displays loading text for better usability in slow systems.
Moved some functions from Memory.asm to new Registers.asm.

File size: 1.2 KB
RevLine 
[41]1; File name     :   StringsForDialogs.asm
2; Project name  :   Assembly Library
3; Created date  :   14.9.2010
[54]4; Last update   :   23.10.2010
[41]5; Author        :   Tomi Tilli
6; Description   :   Strings used by dialogs.
7
8; Strings for Progress Dialog
9g_szTimeElapsed:        db  "Time elapsed  :",NULL
10g_szTimeLeft:           db  "Estimated left:",NULL
[44]11g_szTimeFormat:         db  " %2-u min %2-u sec",LF,CR,NULL
[41]12
[54]13; Strings for Drive Dialog
14g_szDriveFormat:        db  "%c:",NULL
15
[41]16; Strings for File Dialog
17g_szChangeDrive:        db  "F2 Change Drive",LF,CR,NULL
18g_szSelectDirectory:    db  "F3 Select Current Directory",LF,CR,NULL
19g_szCreateNew:          db  "F4 Input new File or Directory",NULL
20
21g_szSelectNewDrive:
22    db      "Select new drive.",NULL
[54]23g_szLoadingPleaseWait:
24    db      "Loading. Please wait...",NULL
[41]25
26g_szEnterNewFileOrDirectory:
27    db      "Enter name for new file or directory.",NULL
28
[46]29FILE_STRING_LENGTH      EQU     (24+1)  ; +1 = LF in directory contents string
[41]30g_szFileFormat:
[46]31    db      "%16S%4-u %c%cB",LF,NULL
[41]32g_szDirectoryFormat:
[46]33    db      "%16S%s-DIR",LF,NULL
[41]34g_szSub:
35    db      ANGLE_QUOTE_RIGHT,"SUB",NULL
36g_szUp:
[46]37    db      ANGLE_QUOTE_LEFT," UP",NULL
[41]38
39g_szSingleItem:         ; Used by Dialog.asm for single item line
40g_szUpdir:
41    db      ".."
42g_szNull:
43    db      NULL
Note: See TracBrowser for help on using the repository browser.