diff options
author | XANTRONIX Development | 2023-09-13 16:25:52 -0400 |
---|---|---|
committer | XANTRONIX Development | 2023-09-13 16:25:52 -0400 |
commit | f17c44b70c0eadcd5fb9e8b06834187e8bb2a707 (patch) | |
tree | d7db5a2ce3d0fe2d4f20c7118b764f55b06a336d /include | |
parent | 8a7574fa99fb25b07e629d348756da187d00010c (diff) | |
download | zxdump-f17c44b70c0eadcd5fb9e8b06834187e8bb2a707.tar.gz zxdump-f17c44b70c0eadcd5fb9e8b06834187e8bb2a707.tar.bz2 zxdump-f17c44b70c0eadcd5fb9e8b06834187e8bb2a707.zip |
Sorry hoss, those belong there
Diffstat (limited to 'include')
-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) |