From 3b02bdbbf657cb407d2cd9ec348aa9da6ced9c89 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Thu, 27 Jun 2024 01:44:09 -0400 Subject: bas.h: remove TOK_COLON (use OP_COLON instead). --- bas.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'bas.h') diff --git a/bas.h b/bas.h index ed897ef..6996b35 100644 --- a/bas.h +++ b/bas.h @@ -27,9 +27,6 @@ them anyway. */ #define MAXVARS 256 -/* tokenized colon (statement separator) */ -#define TOK_COLON 0x14 - /* BASIC tokens. Full set, taken from Chapter 10 of De Re Atari. I used a paper copy, but you can also find it on the web: https://www.atariarchives.org/dere/chapt10.php @@ -101,8 +98,8 @@ #define OP_STRCONST 0x0f #define OP_COMMA 0x12 #define OP_DOLLAR 0x13 -#define OP_EOS 0x14 -#define OP_COLON 0x14 +#define OP_EOS 0x14 /* two names: "end of statement"... */ +#define OP_COLON 0x14 /* ...and "colon" */ #define OP_SEMICOLON 0x15 #define OP_EOL 0x16 #define OP_GOTO 0x17 -- cgit v1.2.3