diff options
author | yenatch <yenatch@gmail.com> | 2017-12-12 00:08:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-12 00:08:54 -0500 |
commit | f6942b9a136b2ee3b25159ebc4d54509a42c5266 (patch) | |
tree | 0c0bedcd311ab83262e31cf6d9d4c37257143acc /data/name_input_chars.asm | |
parent | 94c7def4883fbdbcd3987a067443a2069b8bb610 (diff) | |
parent | 79873a1bfc0e40067c45dc74fbbebf547d177978 (diff) |
Merge pull request #411 from roukaour/master
Clean up more labels, constants, and file names
Diffstat (limited to 'data/name_input_chars.asm')
-rw-r--r-- | data/name_input_chars.asm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/data/name_input_chars.asm b/data/name_input_chars.asm new file mode 100644 index 000000000..d89289142 --- /dev/null +++ b/data/name_input_chars.asm @@ -0,0 +1,31 @@ +; see engine/naming_screen.asm + +NameInputLower: + db "a b c d e f g h i" + db "j k l m n o p q r" + db "s t u v w x y z " + db "× ( ) : ; [ ] <PK> <MN>" + db "UPPER DEL END " + +BoxNameInputLower: + db "a b c d e f g h i" + db "j k l m n o p q r" + db "s t u v w x y z " + db "é 'd 'l 'm 'r 's 't 'v 0" + db "1 2 3 4 5 6 7 8 9" + db "UPPER DEL END " + +NameInputUpper: + db "A B C D E F G H I" + db "J K L M N O P Q R" + db "S T U V W X Y Z " + db "- ? ! / . , " + db "lower DEL END " + +BoxNameInputUpper: + db "A B C D E F G H I" + db "J K L M N O P Q R" + db "S T U V W X Y Z " + db "× ( ) : ; [ ] <PK> <MN>" + db "- ? ! ♂ ♀ / . , &" + db "lower DEL END " |