diff options
-rw-r--r-- | include/zx/basic.h | 6 | ||||
-rw-r--r-- | include/zx/charset.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/include/zx/basic.h b/include/zx/basic.h index 1989954..973923c 100644 --- a/include/zx/basic.h +++ b/include/zx/basic.h @@ -5,12 +5,6 @@ #include <stdlib.h> #include <inttypes.h> -#define ZX81_CHAR_TOKEN_LOW_START 0x40 -#define ZX81_CHAR_TOKEN_LOW_END 0x42 - -#define ZX81_CHAR_TOKEN_HIGH_START 0xc0 -#define ZX81_CHAR_TOKEN_HIGH_END 0xff - #define ZX_BASIC_STATE_SIZE 116 #define ZX_BASIC_LINE_LAST 0x7676 diff --git a/include/zx/charset.h b/include/zx/charset.h index 34f6eb8..6eea103 100644 --- a/include/zx/charset.h +++ b/include/zx/charset.h @@ -6,6 +6,12 @@ #define ZX81_CHARSET_LEN 64 +#define ZX81_CHAR_TOKEN_LOW_START 0x40 +#define ZX81_CHAR_TOKEN_LOW_END 0x42 + +#define ZX81_CHAR_TOKEN_HIGH_START 0xc0 +#define ZX81_CHAR_TOKEN_HIGH_END 0xff + #define ZX81_CHAR_LOW(c) \ (c <= ZX81_CHARSET_LEN) |