Sorry hoss, those belong there

This commit is contained in:
XANTRONIX 2023-09-13 16:25:52 -04:00
parent 8a7574fa99
commit f17c44b70c
2 changed files with 6 additions and 6 deletions

View file

@ -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

View file

@ -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)