-
Notifications
You must be signed in to change notification settings - Fork 3
/
Strings.asm
executable file
·48 lines (32 loc) · 1.25 KB
/
Strings.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
;
; Strings saved here for printing to user + debugging
;
DATASEG
ScoreString db 'Score: ', '$'
LevelString db 'Level: ', '$'
GameOverString db 'Game Over!$'
WinString db 'You Win!$'
YouEarnedXString db 'You earned $'
ScoreWordString db ' Score!$'
PerfectLevelString db 'Perfect level, +5 Score!$'
HitString db 'You got hit, -5 Score :($'
NAString db 'N/A$'
RankString db 'Rank$'
NameString db 'Name$'
JustScoreString db 'Score$'
EnterYourNameString db 'Please enter your name: $'
ScoreSavedString db 'Your score was saved!$'
;Debug strings:
OpenErrorMsg db 'File Open Error', 10,'$'
FileNotFoundMsg db 'File not found$' ;error code 2
TooManyOpenFilesMsg db 'Too many open files$' ;error code 4
AccessDeniedMsg db 'Access Denied$' ;error code 5
InvalidAccessMsg db 'Invalid Access$' ;error code 12
UnknownErrorMsg db 'Unknown Error$'
CloseErrorMsg db 'File Close Error', 10,'$'
PointerSetErrorMsg db 'Pointer Set Error', 10, '$'
ReadErrorMsg db 'Read Error', 10, '$'
PlayersInTableString db ' Players in table$'
NoNeedToSortString db '0 or 1 score in table, no need to sort$'
ReplacedRanksString db 'Replaced ranks $'
AndWordString db ' and $'