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
Line 
1; File name     :   StringsForDialogs.asm
2; Project name  :   Assembly Library
3; Created date  :   14.9.2010
4; Last update   :   23.10.2010
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
11g_szTimeFormat:         db  " %2-u min %2-u sec",LF,CR,NULL
12
13; Strings for Drive Dialog
14g_szDriveFormat:        db  "%c:",NULL
15
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
23g_szLoadingPleaseWait:
24    db      "Loading. Please wait...",NULL
25
26g_szEnterNewFileOrDirectory:
27    db      "Enter name for new file or directory.",NULL
28
29FILE_STRING_LENGTH      EQU     (24+1)  ; +1 = LF in directory contents string
30g_szFileFormat:
31    db      "%16S%4-u %c%cB",LF,NULL
32g_szDirectoryFormat:
33    db      "%16S%s-DIR",LF,NULL
34g_szSub:
35    db      ANGLE_QUOTE_RIGHT,"SUB",NULL
36g_szUp:
37    db      ANGLE_QUOTE_LEFT," UP",NULL
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.