aboutsummaryrefslogtreecommitdiff
path: root/bxe_tokens.c
diff options
context:
space:
mode:
Diffstat (limited to 'bxe_tokens.c')
-rw-r--r--bxe_tokens.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/bxe_tokens.c b/bxe_tokens.c
new file mode 100644
index 0000000..5189ee0
--- /dev/null
+++ b/bxe_tokens.c
@@ -0,0 +1,19 @@
+/* BXL and BXE token tables are identical up to 0x56 */
+const char *bxe_cmds[] = {
+ "LOCAL", /* $57 */
+ "EXTEND", /* $58 */
+ "PROCEDURE", /* $59 */
+ 0, /* $5A */
+ "CALL", /* $5B */
+ "SORTUP", /* $5C */
+ "SORTDOWN", /* $5D */
+ "EXIT", /* $5E */
+ "NUM", /* $5F */
+ "HITCLR", /* $60 */
+ "INVERSE", /* $61 */
+ "NORMAL", /* $62 */
+ "BLOAD", /* $63 */
+ "BSAVE" /* $64 */
+};
+
+const int bxe_cmd_size = sizeof(bxe_cmds);