apple2a/main.c

1348 lines
38 KiB
C
Raw Normal View History

2018-08-03 01:59:31 +00:00
#include <string.h>
2018-08-02 07:45:58 +00:00
#include "exporter.h"
2018-07-31 19:02:26 +00:00
#include "platform.h"
2018-08-02 23:26:42 +00:00
#include "runtime.h"
2018-07-31 19:02:26 +00:00
uint8_t *title = "Apple IIa";
uint8_t title_length = 9;
2018-07-28 05:30:44 +00:00
2018-08-02 06:29:37 +00:00
// 6502 instructions.
2018-08-03 22:31:11 +00:00
#define I_ORA_ZPG 0x05
2018-08-02 21:43:55 +00:00
#define I_CLC 0x18
2018-08-02 06:29:37 +00:00
#define I_JSR 0x20
2018-08-02 21:43:55 +00:00
#define I_SEC 0x38
2018-08-03 21:20:04 +00:00
#define I_JMP_ABS 0x4C
2018-08-02 06:29:37 +00:00
#define I_RTS 0x60
2018-08-05 06:38:44 +00:00
#define I_JMP_IND 0x6C
2018-08-02 21:43:55 +00:00
#define I_STA_ZPG 0x85
#define I_STX_ZPG 0x86
#define I_STA_IND_Y 0x91
#define I_LDY_IMM 0xA0
#define I_LDX_IMM 0xA2
#define I_LDA_ZPG 0xA5
#define I_LDX_ZPG 0xA6
#define I_LDA_IMM 0xA9
2018-08-05 06:38:44 +00:00
#define I_TAX 0xAA
2018-08-03 22:31:11 +00:00
#define I_BNE_REL 0xD0
#define I_BEQ_REL 0xF0
2018-08-02 06:29:37 +00:00
// Tokens.
2018-08-01 17:44:24 +00:00
#define T_HOME 0x80
#define T_PRINT 0x81
2018-08-01 20:34:26 +00:00
#define T_LIST 0x82
2018-08-02 21:43:55 +00:00
#define T_POKE 0x83
2018-08-03 18:35:15 +00:00
#define T_RUN 0x84
2018-08-03 19:02:14 +00:00
#define T_NEW 0x85
2018-08-03 20:09:02 +00:00
#define T_PLUS 0x86
#define T_MINUS 0x87
2018-08-03 23:25:57 +00:00
#define T_ASTERISK 0x88
#define T_SLASH 0x89
2018-08-03 20:09:02 +00:00
#define T_CARET 0x8A
#define T_AND 0x8B
#define T_OR 0x8C
#define T_GREATER_THAN 0x8D
2018-08-03 23:41:52 +00:00
#define T_EQUAL 0x8E
2018-08-03 20:09:02 +00:00
#define T_LESS_THAN 0x8F
2018-08-03 21:20:04 +00:00
#define T_GOTO 0x90
2018-08-03 22:31:11 +00:00
#define T_IF 0x91
#define T_THEN 0x92
2018-08-04 01:57:30 +00:00
#define T_GR 0x93
#define T_TEXT 0x94
2018-08-04 02:15:18 +00:00
#define T_COLOR 0x95
#define T_PLOT 0x96
2018-08-05 06:38:44 +00:00
#define T_FOR 0x97
#define T_TO 0x98
#define T_STEP 0x99
#define T_NEXT 0x9A
2018-08-03 18:35:15 +00:00
2018-08-03 23:25:57 +00:00
// Operators. These encode both the operator (high nybble) and the precedence
// (low nybble). Lower precedence has a lower low nybble value. For example,
// OP_ADD (0x99) and OP_SUB (0xA9) have the same precedence (9). By convention
// the precedence is the value of the lowest-valued operator in its class
// (OP_ADD = 0x99), but only the relative values of precedence matter. All
// of these are left-associative, as in AppleSoft BASIC. (Even though
// exponentiation really should be right-associative.)
#define OP_PRECEDENCE(op) ((op) & 0x0F)
#define OP_OR 0x00
#define OP_AND 0x11
#define OP_NOT 0x22
#define OP_LTE 0x33
#define OP_GTE 0x43
#define OP_EQ 0x55
#define OP_NEQ 0x65
#define OP_LT 0x75
#define OP_GT 0x85
#define OP_ADD 0x99
#define OP_SUB 0xA9
#define OP_MULT 0xBB
#define OP_DIV 0xCB
#define OP_NEG 0xDD
#define OP_EXP 0xEE
2018-08-04 01:38:55 +00:00
#define OP_CLOSE_PARENS 0xFD // Never on the stack.
#define OP_OPEN_PARENS 0xFE // Ignore precedence.
2018-08-03 23:41:52 +00:00
#define OP_INVALID 0xFF
2018-08-03 23:25:57 +00:00
2018-08-03 20:09:02 +00:00
// Variable for "No more space for variables".
#define OUT_OF_VARIABLE_SPACE 0xFF
2018-08-03 21:20:04 +00:00
// Maximum number of lines in stored program.
#define MAX_LINES 128
2018-08-03 23:25:57 +00:00
// Maximum number of operators in the operator stack.
#define MAX_OP_STACK 16
2018-08-05 00:32:36 +00:00
// Maximum number of forward GOTOs.
#define MAX_FORWARD_GOTO 16
2018-08-03 20:31:31 +00:00
// Test for whether a character is a digit.
#define IS_DIGIT(ch) ((ch) >= '0' && (ch) <= '9')
// Test for first and subsequent variable name letters.
#define IS_FIRST_VARIABLE_LETTER(ch) ((ch) >= 'A' && (ch) <= 'Z')
#define IS_SUBSEQUENT_VARIABLE_LETTER(ch) (IS_FIRST_VARIABLE_LETTER(ch) || IS_DIGIT(ch))
2018-08-05 00:32:36 +00:00
// Info for each "forward GOTO", which is a GOTO to a line that we've
// not compiled yet.
typedef struct {
// The line number the GOTO is on. This is for error messages.
uint16_t source_line_number;
// The line number it's trying to jump to.
uint16_t target_line_number;
// The address of the JMP instructions. This is 0 if this entry is unused.
uint8_t *jmp_address;
} ForwardGoto;
// Info for each compiled line.
typedef struct {
// The line's number.
uint16_t line_number;
// The address in memory where its code was compiled.
uint8_t *code;
} LineInfo;
2018-08-01 17:44:24 +00:00
// List of tokens. The token value is the index plus 0x80.
static uint8_t *TOKEN[] = {
2018-08-01 17:44:24 +00:00
"HOME",
"PRINT",
2018-08-01 20:34:26 +00:00
"LIST",
2018-08-02 21:43:55 +00:00
"POKE",
2018-08-03 18:35:15 +00:00
"RUN",
2018-08-03 19:02:14 +00:00
"NEW",
2018-08-03 20:09:02 +00:00
"+",
"-",
"*",
"/",
"^",
"AND",
"OR",
">",
"=",
"<",
2018-08-03 21:20:04 +00:00
"GOTO",
2018-08-03 22:31:11 +00:00
"IF",
"THEN",
2018-08-04 01:57:30 +00:00
"GR",
"TEXT",
2018-08-04 02:15:18 +00:00
"COLOR",
"PLOT",
2018-08-05 06:38:44 +00:00
"FOR",
"TO",
"STEP",
"NEXT",
2018-08-01 17:44:24 +00:00
};
static int16_t TOKEN_COUNT = sizeof(TOKEN)/sizeof(TOKEN[0]);
2018-08-01 17:44:24 +00:00
uint8_t g_input_buffer[80];
int16_t g_input_buffer_length = 0;
2018-07-31 22:03:06 +00:00
// Compiled binary.
2018-08-03 18:35:15 +00:00
uint8_t g_compiled[1024];
int16_t g_compiled_length = 0;
2018-08-01 17:58:03 +00:00
void (*g_compiled_function)() = (void (*)()) g_compiled;
2018-07-31 19:48:29 +00:00
2018-08-01 20:34:26 +00:00
// Stored program. Each line is:
// - Two bytes for pointer to next line (or zero if none).
// - Two bytes for line number.
// - Program line.
// - Nul.
uint8_t g_program[1024];
2018-08-01 20:34:26 +00:00
2018-08-05 00:32:36 +00:00
// Info about each compiled line.
LineInfo g_line_info[MAX_LINES];
uint8_t g_line_info_count;
2018-08-03 21:20:04 +00:00
2018-08-03 23:25:57 +00:00
// Operator stack, of the expression-evaluation routines. These are from the
// OP_ constants.
uint8_t g_op_stack[MAX_OP_STACK];
uint8_t g_op_stack_size = 0;
2018-08-05 00:32:36 +00:00
// List of all forward GOTOs. These are packed at the beginning, so the
// first invalid (jmp_address == 0) entry marks the end.
ForwardGoto g_forward_goto[MAX_FORWARD_GOTO];
uint8_t g_forward_goto_count = 0;
2018-08-01 20:34:26 +00:00
/**
* Print the tokenized string, with tokens displayed as their full text.
* Prints a newline at the end.
*/
static void print_detokenized(uint8_t *s) {
2018-08-01 20:34:26 +00:00
while (*s != '\0') {
if (*s >= 0x80) {
print_char(' ');
print(TOKEN[*s - 0x80]);
print_char(' ');
} else {
print_char(*s);
}
s += 1;
}
print_char('\n');
}
/**
* Get the pointer to the next line in the stored program. Returns 0
* if we're at the end.
*/
static uint8_t *get_next_line(uint8_t *line) {
return *((uint8_t **) line);
2018-08-01 20:34:26 +00:00
}
/**
* Get the line number of a stored program line.
*/
static uint16_t get_line_number(uint8_t *line) {
return *((uint16_t *) (line + 2));
2018-08-01 20:34:26 +00:00
}
/**
* Return a pointer to the end of the program. This is one byte PAST the
* last bytes in the program, which are two nuls. The "line" parameter is
2018-08-01 20:34:26 +00:00
* an optional starting point, to use as an optimization instead of starting
* from the beginning.
*/
static uint8_t *get_end_of_program(uint8_t *line) {
uint8_t *next_line;
2018-08-01 20:34:26 +00:00
if (line == 0) {
// Start at the beginning if not specified.
line = g_program;
2018-08-01 20:34:26 +00:00
}
while ((next_line = get_next_line(line)) != 0) {
2018-08-01 20:34:26 +00:00
line = next_line;
}
// Skip the null "next" pointer.
return line + 2;
2018-08-01 20:34:26 +00:00
}
2018-08-03 19:02:14 +00:00
/**
* Clear the stored program.
*/
static void new_statement() {
g_program[0] = '\0';
g_program[1] = '\0';
}
2018-08-01 20:34:26 +00:00
/**
* List the stored program.
*/
static void list_statement() {
uint8_t *line = g_program;
uint8_t *next_line;
2018-08-01 20:34:26 +00:00
2018-08-03 07:02:40 +00:00
print_newline();
while ((next_line = get_next_line(line)) != 0) {
2018-08-01 20:34:26 +00:00
print_int(get_line_number(line));
print_char(' ');
print_detokenized(line + 4);
line = next_line;
2018-08-01 20:34:26 +00:00
}
}
2018-07-31 22:03:06 +00:00
/**
* If a starts with string b, returns the position in a after b. Else returns null.
2018-07-31 22:03:06 +00:00
*/
static uint8_t *skip_over(uint8_t *a, uint8_t *b) {
while (*a != '\0' && *b != '\0') {
2018-07-31 22:03:06 +00:00
if (*a != *b) {
// Doesn't start with b.
2018-07-31 22:03:06 +00:00
return 0;
}
2018-07-28 05:30:44 +00:00
2018-07-31 22:03:06 +00:00
a += 1;
b += 1;
}
2018-07-28 05:30:44 +00:00
// See if we're at the end of b.
return *b == '\0' ? a : 0;
2018-07-31 22:03:06 +00:00
}
/**
2018-08-01 17:56:48 +00:00
* Add a function call to the compiled buffer.
2018-07-31 22:03:06 +00:00
*/
2018-08-02 06:29:37 +00:00
static void add_call(void *function) {
2018-08-03 21:20:04 +00:00
uint16_t addr = (uint16_t) function;
2018-07-31 22:03:06 +00:00
2018-08-02 06:29:37 +00:00
g_compiled[g_compiled_length++] = I_JSR;
2018-08-01 17:58:03 +00:00
g_compiled[g_compiled_length++] = addr & 0xFF;
g_compiled[g_compiled_length++] = addr >> 8;
2018-07-31 22:03:06 +00:00
}
/**
2018-08-01 17:56:48 +00:00
* Add a function return to the compiled buffer.
2018-07-31 22:03:06 +00:00
*/
static void add_return() {
2018-08-02 06:29:37 +00:00
g_compiled[g_compiled_length++] = I_RTS;
2018-07-31 22:03:06 +00:00
}
2018-08-02 06:29:37 +00:00
/**
* Parse an unsigned integer, returning the value and moving the pointer
* past the end of the number. The pointer must already be at the beginning
* of the number.
*/
static uint16_t parse_uint16(uint8_t **s_ptr) {
uint16_t value = 0;
uint8_t *s = *s_ptr;
2018-08-03 20:31:31 +00:00
while (IS_DIGIT(*s)) {
2018-08-02 06:29:37 +00:00
value = value*10 + (*s - '0');
s += 1;
}
*s_ptr = s;
return value;
}
2018-08-03 19:02:14 +00:00
/**
* Generate code to put the value into AX.
*/
static void compile_load_ax(uint16_t value) {
g_compiled[g_compiled_length++] = I_LDX_IMM;
2018-08-03 19:02:14 +00:00
g_compiled[g_compiled_length++] = value >> 8;
g_compiled[g_compiled_length++] = I_LDA_IMM;
2018-08-03 19:02:14 +00:00
g_compiled[g_compiled_length++] = value & 0xFF;
}
/**
* Find a variable by name. Only the first two letters are considered.
* Advances the pointer past the variable name (including letters after
* the first two). Returns the memory address of the variable. If we
* ran out of space for variables, returns OUT_OF_VARIABLE_SPACE
* and does not modify the buffer pointer.
*/
static uint8_t find_variable(uint8_t **buffer) {
uint8_t *s = *buffer;
uint8_t *existing_name = g_variable_names;
uint8_t name[2];
int16_t var;
// Pull out the variable name.
name[0] = *s++;
2018-08-03 20:31:31 +00:00
if (IS_SUBSEQUENT_VARIABLE_LETTER(*s)) {
name[1] = *s++;
} else {
name[1] = 0;
}
// Skip rest of name.
2018-08-03 20:31:31 +00:00
while (IS_SUBSEQUENT_VARIABLE_LETTER(*s)) {
s++;
}
for (var = 0; var < MAX_VARIABLES; var++) {
if (existing_name[0] == 0 && existing_name[1] == 0) {
// First free entry. Allocate it.
existing_name[0] = name[0];
existing_name[1] = name[1];
break;
} else if (existing_name[0] == name[0] && existing_name[1] == name[1]) {
// Found it.
break;
}
existing_name += 2;
}
if (var == MAX_VARIABLES) {
var = OUT_OF_VARIABLE_SPACE;
} else {
// Convert index to address.
var = FIRST_VARIABLE + 2*var;
// Advance pointer.
*buffer = s;
}
return (uint8_t) var;
}
2018-08-03 21:20:04 +00:00
/**
2018-08-05 00:32:36 +00:00
* Find the address of a line in the compiled buffer, or 0 if not found.
2018-08-03 21:20:04 +00:00
*/
2018-08-05 00:32:36 +00:00
static uint8_t *find_line_address(uint16_t line_number) {
2018-08-03 21:20:04 +00:00
int i;
2018-08-05 00:32:36 +00:00
for (i = 0; i < g_line_info_count; i++) {
LineInfo *l = &g_line_info[i];
if (l->line_number == line_number) {
return l->code;
2018-08-03 21:20:04 +00:00
}
}
2018-08-05 00:32:36 +00:00
return 0;
2018-08-03 21:20:04 +00:00
}
2018-08-03 23:25:57 +00:00
/**
* Pop an operator off the operator stack and compile it.
*/
static void pop_operator_stack() {
uint8_t op = g_op_stack[--g_op_stack_size];
switch (op) {
case OP_ADD:
add_call(tosaddax);
break;
case OP_SUB:
add_call(tossubax);
break;
case OP_MULT:
add_call(tosmulax);
break;
case OP_DIV:
add_call(tosdivax);
break;
2018-08-03 23:41:52 +00:00
case OP_EQ:
add_call(toseqax);
break;
case OP_NEQ:
add_call(tosneax);
break;
case OP_LT:
add_call(tosltax);
break;
case OP_GT:
add_call(tosgtax);
break;
case OP_LTE:
add_call(tosleax);
break;
case OP_GTE:
add_call(tosgeax);
break;
2018-08-04 01:38:55 +00:00
case OP_OPEN_PARENS:
// No-op.
break;
default:
print("Unhandled operator\n");
break;
2018-08-03 23:25:57 +00:00
}
}
/**
* Push an operator onto the operator stack. Follow the Shunting-yard
* algorithm so that higher-precedence operators are performed
* first.
*
* https://en.wikipedia.org/wiki/Shunting-yard_algorithm
*/
static void push_operator_stack(uint8_t op) {
// All our operators are left-associative, so no special check for the case
// of equal precedence.
while (g_op_stack_size > 0 &&
2018-08-04 01:38:55 +00:00
g_op_stack[g_op_stack_size - 1] != OP_OPEN_PARENS &&
2018-08-03 23:25:57 +00:00
OP_PRECEDENCE(g_op_stack[g_op_stack_size - 1]) >= OP_PRECEDENCE(op)) {
pop_operator_stack();
}
// TODO Check for g_op_stack overflow.
g_op_stack[g_op_stack_size++] = op;
}
2018-08-02 07:45:58 +00:00
/**
* Parse an expression, generating code to compute it, leaving the
* result in AX.
*/
static uint8_t *compile_expression(uint8_t *s) {
char have_value_in_ax = 0;
2018-08-02 07:45:58 +00:00
while (1) {
2018-08-03 20:31:31 +00:00
if (IS_DIGIT(*s)) {
2018-08-02 07:45:58 +00:00
// Parse number.
if (have_value_in_ax) {
// Push on the number stack.
add_call(pushax);
}
2018-08-03 23:25:57 +00:00
compile_load_ax(parse_uint16(&s));
have_value_in_ax = 1;
2018-08-03 20:31:31 +00:00
} else if (IS_FIRST_VARIABLE_LETTER(*s)) {
// Variable reference.
uint8_t var = find_variable(&s);
if (have_value_in_ax) {
// Push on the number stack.
add_call(pushax);
}
if (var == OUT_OF_VARIABLE_SPACE) {
// TODO: Not sure how to deal with this. For now just
// fill in with zero, since assigning to this elsewhere
// will cause an error.
compile_load_ax(0);
} else {
// Load from var.
g_compiled[g_compiled_length++] = I_LDA_ZPG;
g_compiled[g_compiled_length++] = var;
g_compiled[g_compiled_length++] = I_LDX_ZPG;
g_compiled[g_compiled_length++] = var + 1;
}
have_value_in_ax = 1;
2018-08-02 07:45:58 +00:00
} else {
2018-08-03 23:41:52 +00:00
// Check if it's an operator.
uint8_t op = OP_INVALID;
if (*s == T_PLUS) {
op = OP_ADD;
} else if (*s == T_MINUS) {
// TODO check for unary.
op = OP_SUB;
} else if (*s == T_ASTERISK) {
op = OP_MULT;
} else if (*s == T_SLASH) {
op = OP_DIV;
} else if (*s == T_EQUAL) {
if (s[1] == T_LESS_THAN) {
s += 1;
op = OP_LTE;
} else if (s[1] == T_GREATER_THAN) {
s += 1;
op = OP_GTE;
} else {
op = OP_EQ;
}
} else if (*s == T_LESS_THAN) {
if (s[1] == T_EQUAL) {
s += 1;
op = OP_LTE;
} else if (s[1] == T_GREATER_THAN) {
s += 1;
op = OP_NEQ;
} else {
op = OP_LT;
}
} else if (*s == T_GREATER_THAN) {
if (s[1] == T_EQUAL) {
s += 1;
op = OP_GTE;
} else if (s[1] == T_LESS_THAN) {
s += 1;
op = OP_NEQ;
} else {
op = OP_GT;
}
2018-08-04 01:38:55 +00:00
} else if (*s == '(') { // Parentheses are not tokenized.
op = OP_OPEN_PARENS;
} else if (*s == ')') { // Parentheses are not tokenized.
op = OP_CLOSE_PARENS;
// Pop until open parethesis.
while (g_op_stack_size > 0 && g_op_stack[g_op_stack_size - 1] != OP_OPEN_PARENS) {
pop_operator_stack();
}
if (g_op_stack_size == 0) {
print("Extra close parenthesis\n");
} else {
// Pop open parenthesis.
pop_operator_stack();
}
2018-08-03 23:41:52 +00:00
}
if (op != OP_INVALID) {
s += 1;
2018-08-04 01:38:55 +00:00
if (op != OP_CLOSE_PARENS) {
push_operator_stack(op);
}
2018-08-03 23:41:52 +00:00
} else {
break;
}
2018-08-02 07:45:58 +00:00
}
}
2018-08-04 01:38:55 +00:00
if (have_value_in_ax) {
// Empty the operator stack.
while (g_op_stack_size > 0) {
if (g_op_stack[g_op_stack_size - 1] == OP_OPEN_PARENS) {
print("Extra open parenthesis\n");
}
pop_operator_stack();
}
} else {
// Something went wrong, we never got anything.
print("Expression has no content\n");
compile_load_ax(0);
2018-08-02 07:45:58 +00:00
}
return s;
}
2018-08-01 17:44:24 +00:00
/**
2018-08-03 18:35:15 +00:00
* Tokenize a string in place. Returns (and removes) any line number, or
* INVALID_LINE_NUMBER if there's none.
2018-08-01 17:44:24 +00:00
*/
static uint16_t tokenize(uint8_t *s) {
uint8_t *t = s; // Tokenized version.
int16_t line_number;
2018-08-01 17:44:24 +00:00
// Parse optional line number.
2018-08-03 20:31:31 +00:00
if (IS_DIGIT(*s)) {
2018-08-02 06:29:37 +00:00
line_number = parse_uint16(&s);
2018-08-01 17:44:24 +00:00
} else {
2018-08-03 18:35:15 +00:00
line_number = INVALID_LINE_NUMBER;
2018-08-01 17:44:24 +00:00
}
// Convert tokens.
while (*s != '\0') {
if (*s == ' ') {
// Skip spaces.
s++;
} else {
int16_t i;
uint8_t *skipped = 0;
2018-08-01 17:44:24 +00:00
2018-08-05 00:32:36 +00:00
// Try every token.
2018-08-01 17:44:24 +00:00
for (i = 0; i < TOKEN_COUNT; i++) {
2018-08-05 00:35:55 +00:00
// Quick optimization, peek at the first letter.
skipped = s[0] == TOKEN[i][0] ? skip_over(s, TOKEN[i]) : 0;
2018-08-01 17:44:24 +00:00
if (skipped != 0) {
// Record token.
*t++ = 0x80 + i;
s = skipped;
break;
}
}
if (skipped == 0) {
// Didn't find a token, just copy text.
*t++ = *s++;
}
}
}
// Terminate string.
2018-08-01 17:44:24 +00:00
*t++ = '\0';
return line_number;
}
/**
* Find the stored program line with the given line number. If the line does
* not exist, returns a pointer to the location where it should be inserted.
2018-08-01 17:44:24 +00:00
*/
static uint8_t *find_line(uint16_t line_number) {
uint8_t *line = g_program;
uint8_t *next_line;
2018-08-01 20:34:26 +00:00
while ((next_line = get_next_line(line)) != 0) {
// See if we hit it or just blew past it.
if (get_line_number(line) >= line_number) {
break;
2018-08-01 20:34:26 +00:00
}
line = next_line;
}
return line;
2018-08-01 17:44:24 +00:00
}
2018-08-05 00:32:36 +00:00
/**
* Adds a new entry to the list for forward GOTOs. Returns whether successful.
*/
static uint8_t add_forward_goto(uint16_t source_line_number, uint16_t target_line_number,
uint8_t *jmp_address) {
ForwardGoto *f;
if (g_forward_goto_count == MAX_FORWARD_GOTO) {
return 0;
}
f = &g_forward_goto[g_forward_goto_count++];
f->source_line_number = source_line_number;
f->target_line_number = target_line_number;
f->jmp_address = jmp_address;
return 1;
}
/**
* Go through the list of forward GOTOs and set their jumps to this code.
*/
static void fix_up_forward_gotos(uint16_t line_number, uint8_t *code) {
int i;
ForwardGoto *f;
uint16_t addr = (uint16_t) code;
for (i = 0; i < g_forward_goto_count; i++) {
f = &g_forward_goto[i];
if (f->target_line_number == line_number) {
// Fill in jump address.
f->jmp_address[1] = addr & 0xFF;
f->jmp_address[2] = addr >> 8;
// Swap last entry with this one. It's okay if these
// are the same entry.
*f = g_forward_goto[g_forward_goto_count - 1];
// Reduce size of array.
g_forward_goto_count -= 1;
// Re-process this entry, since we've swapped it.
i -= 1;
}
}
}
/**
* Adds an entry to the list of line infos. Returns whether successful.
*/
static uint8_t add_line_info(uint16_t line_number, uint8_t *code) {
LineInfo *l;
if (g_line_info_count == MAX_LINES) {
// TODO not sure what to do here.
print("Program too large");
return 0;
}
l = &g_line_info[g_line_info_count++];
l->line_number = line_number;
l->code = code;
// Fix up any forward GOTOs to this line.
fix_up_forward_gotos(line_number, code);
return 1;
}
2018-07-31 22:03:06 +00:00
/**
2018-08-03 18:35:15 +00:00
* Call to configure the compilation step.
2018-07-31 22:03:06 +00:00
*/
2018-08-03 18:35:15 +00:00
static void set_up_compile(void) {
g_compiled_length = 0;
2018-08-05 00:32:36 +00:00
g_line_info_count = 0;
g_forward_goto_count = 0;
2018-08-03 18:35:15 +00:00
}
2018-08-01 17:44:24 +00:00
2018-08-03 18:35:15 +00:00
/**
* Compile the tokenized line of BASIC, adding it to the g_compiled binary.
*/
2018-08-03 19:02:14 +00:00
static void compile_buffer(uint8_t *buffer, uint16_t line_number) {
2018-08-03 18:35:15 +00:00
uint8_t *s = buffer;
uint8_t done;
2018-08-03 22:31:11 +00:00
// Keep track of addresses that point to the end of the line.
uint8_t **end_of_line_address[4];
uint8_t end_of_line_count = 0;
2018-08-01 17:44:24 +00:00
2018-08-03 18:35:15 +00:00
do {
int8_t error = 0;
2018-08-03 22:31:11 +00:00
int8_t continue_statement = 0;
2018-07-31 22:03:06 +00:00
2018-08-03 18:35:15 +00:00
// Default to being done after one statement.
done = 1;
2018-08-03 18:35:15 +00:00
if (*s == '\0' || *s == ':') {
// Empty statement. We skip the colon below.
2018-08-03 20:31:31 +00:00
} else if (IS_FIRST_VARIABLE_LETTER(*s)) {
// Must be variable assignment.
2018-08-03 20:09:02 +00:00
uint8_t var = find_variable(&s);
if (var == OUT_OF_VARIABLE_SPACE) {
// TODO: Nicer error specifically for out of variable space.
error = 1;
} else {
2018-08-03 23:41:52 +00:00
if (*s != T_EQUAL) {
2018-08-03 20:09:02 +00:00
error = 1;
} else {
s += 1;
2018-08-05 06:38:44 +00:00
// Parse value.
2018-08-03 20:09:02 +00:00
s = compile_expression(s);
// Copy to var.
g_compiled[g_compiled_length++] = I_STA_ZPG;
g_compiled[g_compiled_length++] = var;
g_compiled[g_compiled_length++] = I_STX_ZPG;
g_compiled[g_compiled_length++] = var + 1;
}
}
2018-08-03 18:35:15 +00:00
} else if (*s == T_HOME) {
s += 1;
add_call(home);
} else if (*s == T_PRINT) {
s += 1;
if (*s != '\0' && *s != ':') {
2018-08-03 18:35:15 +00:00
// Parse expression.
s = compile_expression(s);
add_call(print_int);
}
2018-08-03 18:35:15 +00:00
add_call(print_newline);
} else if (*s == T_LIST) {
s += 1;
add_call(list_statement);
} else if (*s == T_POKE) {
s += 1;
// Parse address.
s = compile_expression(s);
// Copy from AX to ptr1.
g_compiled[g_compiled_length++] = I_STA_ZPG;
g_compiled[g_compiled_length++] = (uint8_t) &ptr1;
g_compiled[g_compiled_length++] = I_STX_ZPG;
g_compiled[g_compiled_length++] = (uint8_t) &ptr1 + 1;
2018-08-03 20:09:02 +00:00
if (*s != ',') {
error = 1;
} else {
2018-08-03 18:35:15 +00:00
s++;
2018-08-03 20:09:02 +00:00
// Parse value. LSB is in A.
s = compile_expression(s);
2018-08-05 06:38:44 +00:00
g_compiled[g_compiled_length++] = I_LDY_IMM; // Zero out Y.
2018-08-03 20:09:02 +00:00
g_compiled[g_compiled_length++] = 0;
2018-08-05 06:38:44 +00:00
g_compiled[g_compiled_length++] = I_STA_IND_Y; // Store at *ptr1.
2018-08-03 20:09:02 +00:00
g_compiled[g_compiled_length++] = (uint8_t) &ptr1;
2018-08-03 18:35:15 +00:00
}
2018-08-03 21:20:04 +00:00
} else if (*s == T_GOTO) {
s += 1;
if (!IS_DIGIT(*s)) {
error = 1;
} else {
uint16_t target_line_number = parse_uint16(&s);
2018-08-05 00:32:36 +00:00
uint16_t addr = (uint16_t) find_line_address(target_line_number);
if (addr == 0) {
// Line not found. Must be a forward GOTO. Record it
// and keep going.
uint8_t success = add_forward_goto(line_number, target_line_number,
&g_compiled[g_compiled_length]);
if (!success) {
// TODO handle error.
}
2018-08-03 21:20:04 +00:00
}
2018-08-05 00:32:36 +00:00
g_compiled[g_compiled_length++] = I_JMP_ABS;
g_compiled[g_compiled_length++] = addr & 0xFF;
g_compiled[g_compiled_length++] = addr >> 8;
2018-08-03 21:20:04 +00:00
}
2018-08-03 22:31:11 +00:00
} else if (*s == T_IF) {
uint16_t saved_compiled_length = g_compiled_length;
s += 1;
// Parse conditional expression.
s = compile_expression(s);
// Check if AX is zero. Or the two bytes together, through the zero page.
g_compiled[g_compiled_length++] = I_STX_ZPG;
g_compiled[g_compiled_length++] = (uint8_t) &tmp1;
g_compiled[g_compiled_length++] = I_ORA_ZPG;
g_compiled[g_compiled_length++] = (uint8_t) &tmp1;
// If so, skip to end of this line.
g_compiled[g_compiled_length++] = I_BNE_REL;
g_compiled[g_compiled_length++] = 3; // Skip over absolute jump.
g_compiled[g_compiled_length++] = I_JMP_ABS;
// TODO Check for overflow of end_of_line_address:
end_of_line_address[end_of_line_count++] = (uint8_t **) &g_compiled[g_compiled_length];
g_compiled[g_compiled_length++] = 0; // Address of next line.
g_compiled[g_compiled_length++] = 0; // Address of next line.
if (*s == T_THEN) {
// Skip THEN and continue
s += 1;
continue_statement = 1;
} else if (*s == T_GOTO) {
// Just continue, we'll pick it up after the loop.
continue_statement = 1;
} else {
// Must be THEN or GOTO. Erase what we've done.
g_compiled_length = saved_compiled_length;
error = 1;
}
2018-08-05 06:38:44 +00:00
} else if (*s == T_FOR) {
uint8_t *loop_top_addr_addr = 0;
s += 1;
// We'll set this to 0 if we succeed.
error = 1;
if (IS_FIRST_VARIABLE_LETTER(*s)) {
uint8_t var;
// For the error message.
compile_load_ax(line_number);
add_call(pushax);
var = find_variable(&s);
if (var == OUT_OF_VARIABLE_SPACE) {
// TODO: Nicer error specifically for out of variable space.
} else {
compile_load_ax(var);
add_call(pushax);
if (*s == T_EQUAL) {
s += 1;
// Parse initial value.
s = compile_expression(s);
// Copy to var.
g_compiled[g_compiled_length++] = I_STA_ZPG;
g_compiled[g_compiled_length++] = var;
g_compiled[g_compiled_length++] = I_STX_ZPG;
g_compiled[g_compiled_length++] = var + 1;
if (*s == T_TO) {
s += 1;
// Parse end value.
s = compile_expression(s);
add_call(pushax);
if (*s == T_STEP) {
s += 1;
// Parse step.
s = compile_expression(s);
} else {
// Default to step of 1.
compile_load_ax(1);
}
add_call(pushax);
// Finally, the address at the top of the FOR loop.
// We don't have it yet, so we leave space and record
// the location where the NEXT should jump to.
// Don't use compile_load_ax() here because a change
// there would mess up how we fill it in below. Inline
// it here so we have control over that.
loop_top_addr_addr = &g_compiled[g_compiled_length];
g_compiled[g_compiled_length++] = I_LDX_IMM;
g_compiled_length++;
g_compiled[g_compiled_length++] = I_LDA_IMM;
g_compiled_length++;
add_call(for_statement);
error = 0;
}
}
}
}
if (loop_top_addr_addr != 0) {
uint16_t loop_top_addr = (uint16_t) &g_compiled[g_compiled_length];
loop_top_addr_addr[1] = loop_top_addr >> 8; // X
loop_top_addr_addr[3] = loop_top_addr & 0xFF; // A
}
} else if (*s == T_NEXT) {
s += 1;
// For the error message.
compile_load_ax(line_number);
add_call(pushax);
// See if there's the optional variable. We don't support multiple
// variables ("NEXT I,J").
if (IS_FIRST_VARIABLE_LETTER(*s)) {
uint8_t var = find_variable(&s);
if (var == OUT_OF_VARIABLE_SPACE) {
// TODO: Nicer error specifically for out of variable space.
error = 1;
} else {
compile_load_ax(var);
}
} else {
// Zero means find the most recent FOR loop.
compile_load_ax(0);
}
// Process the NEXT instruction.
add_call(next_statement);
// The next_statement() function returns the address to jump
// to if we're looping, or 0 if we're not.
// Copy from AX to ptr1. We must save it because checking it destroys it.
g_compiled[g_compiled_length++] = I_STA_ZPG;
g_compiled[g_compiled_length++] = (uint8_t) &ptr1;
g_compiled[g_compiled_length++] = I_STX_ZPG;
g_compiled[g_compiled_length++] = (uint8_t) &ptr1 + 1;
// Check if AX is zero. Destroys AX.
g_compiled[g_compiled_length++] = I_ORA_ZPG;
g_compiled[g_compiled_length++] = (uint8_t) &ptr1 + 1; // OR X into A.
// If zero, skip over jump.
g_compiled[g_compiled_length++] = I_BEQ_REL;
g_compiled[g_compiled_length++] = 3; // Skip over indirect jump.
// Jump to top of loop, indirectly through ptr1, which has the address.
g_compiled[g_compiled_length++] = I_JMP_IND;
g_compiled[g_compiled_length++] = (uint8_t) &ptr1 & 0x0F;
g_compiled[g_compiled_length++] = (uint8_t) &ptr1 >> 8;
2018-08-04 01:57:30 +00:00
} else if (*s == T_GR) {
s += 1;
add_call(gr_statement);
} else if (*s == T_TEXT) {
s += 1;
add_call(text_statement);
2018-08-04 02:15:18 +00:00
} else if (*s == T_COLOR) {
s += 1;
if (*s != T_EQUAL) {
error = 1;
} else {
s += 1;
s = compile_expression(s);
add_call(color_statement);
}
} else if (*s == T_PLOT) {
s += 1;
s = compile_expression(s);
add_call(pushax);
if (*s != ',') {
error = 1;
} else {
s += 1;
s = compile_expression(s);
add_call(plot_statement);
}
2018-08-03 18:35:15 +00:00
} else {
error = 1;
}
2018-08-02 06:29:37 +00:00
2018-08-03 18:35:15 +00:00
// Now we're at the end of our statement.
if (!error) {
2018-08-03 22:31:11 +00:00
if (continue_statement) {
// No problem, just continue from here.
done = 0;
} else if (*s == ':') {
2018-08-03 18:35:15 +00:00
// Skip colon.
2018-08-02 21:43:55 +00:00
s += 1;
2018-08-03 18:35:15 +00:00
// Next statement.
done = 0;
} else if (*s != '\0') {
// Junk at the end of the statement.
error = 1;
}
2018-08-03 18:35:15 +00:00
}
2018-08-03 18:35:15 +00:00
if (error) {
2018-08-03 22:31:11 +00:00
end_of_line_count = 0;
2018-08-05 06:38:44 +00:00
compile_load_ax(line_number);
add_call(syntax_error);
2018-08-05 00:32:36 +00:00
// Terminate program.
2018-08-03 22:31:11 +00:00
add_return();
2018-08-03 18:35:15 +00:00
}
} while (!done);
2018-08-03 22:31:11 +00:00
// Fill in the places where we needed the address of the end of the line.
while (end_of_line_count > 0) {
*end_of_line_address[--end_of_line_count] = &g_compiled[g_compiled_length];
}
2018-08-03 18:35:15 +00:00
}
2018-07-31 22:03:06 +00:00
2018-08-03 18:35:15 +00:00
/**
* Complete the compilation buffer and run it.
*/
static void complete_compile_and_execute(void) {
2018-08-05 00:32:36 +00:00
int i;
2018-08-03 18:35:15 +00:00
// Return from function.
add_return();
2018-08-05 06:38:44 +00:00
// Always clear the FOR stack before running. We don't want it
// either in stored program mode, or in immediate mode.
clear_for_stack();
2018-08-05 00:32:36 +00:00
// Forward GOTOs that couldn't be resolved are changed to
// jumps to error messages.
for (i = 0; i < g_forward_goto_count; i++) {
ForwardGoto *f = &g_forward_goto[i];
uint16_t addr = (uint16_t) &g_compiled[g_compiled_length];
// Jump to end of buffer.
f->jmp_address[1] = addr & 0xFF;
f->jmp_address[2] = addr >> 8;
// Add code at end of buffer to show error.
compile_load_ax(f->source_line_number);
add_call(undefined_statement_error);
2018-08-05 06:38:44 +00:00
2018-08-05 00:32:36 +00:00
// Terminate program.
add_return();
}
2018-08-03 18:35:15 +00:00
// Dump compiled buffer to the terminal.
2018-08-05 00:32:36 +00:00
if (1) {
2018-08-03 18:35:15 +00:00
int i;
uint8_t *debug_port = (uint8_t *) 0xBFFE;
2018-08-03 21:27:16 +00:00
// Size of program (including initial address).
debug_port[0] = 2 + g_compiled_length;
// Address of program start, little endian.
debug_port[1] = ((uint16_t) &g_compiled[0]) & 0xFF;
debug_port[1] = ((uint16_t) &g_compiled[0]) >> 8;
// Program bytes.
2018-08-03 18:35:15 +00:00
for (i = 0; i < g_compiled_length; i++) {
debug_port[1] = g_compiled[i];
2018-08-02 21:43:55 +00:00
}
2018-08-03 18:35:15 +00:00
}
if (g_compiled_length > sizeof(g_compiled)) {
// TODO: Check while adding bytes, not at the end.
print("\n?Binary length exceeded");
} else {
// Call it.
g_compiled_function();
}
}
2018-08-03 20:09:02 +00:00
/**
* Clear out all variables. This does not clear their value, only our
* knowledge of them.
*/
void clear_variables(void) {
memset(g_variable_names, 0, sizeof(g_variable_names));
}
2018-08-03 18:35:15 +00:00
/**
* Compile the stored program and execute it.
*/
static void compile_stored_program(void) {
uint8_t *line = g_program;
uint8_t *next_line;
2018-08-03 20:09:02 +00:00
// Clear out all variables.
clear_variables();
2018-08-03 19:02:14 +00:00
set_up_compile();
2018-08-03 20:09:02 +00:00
2018-08-05 06:38:44 +00:00
// Clear runtime state.
add_call(initialize_runtime);
2018-08-03 20:09:02 +00:00
2018-08-03 18:35:15 +00:00
while ((next_line = get_next_line(line)) != 0) {
uint16_t line_number = get_line_number(line);
2018-08-05 00:32:36 +00:00
uint8_t success = add_line_info(line_number, g_compiled + g_compiled_length);
2018-08-03 21:20:04 +00:00
2018-08-05 00:32:36 +00:00
// Compile just this line.
2018-08-03 19:02:14 +00:00
compile_buffer(line + 4, line_number);
2018-08-03 18:35:15 +00:00
line = next_line;
}
2018-08-05 00:32:36 +00:00
2018-08-03 19:02:14 +00:00
complete_compile_and_execute();
2018-08-03 18:35:15 +00:00
}
/**
* Process the user's line of input, possibly compiling the code.
* and executing it.
*/
static void process_input_buffer() {
uint16_t line_number;
g_input_buffer[g_input_buffer_length] = '\0';
// Tokenize in-place.
line_number = tokenize(g_input_buffer);
if (line_number == INVALID_LINE_NUMBER) {
// Immediate mode.
2018-08-02 21:43:55 +00:00
2018-08-03 18:35:15 +00:00
if (g_input_buffer[0] == T_RUN) {
2018-08-03 19:02:14 +00:00
// We don't compile "RUN".
2018-08-03 18:35:15 +00:00
compile_stored_program();
2018-08-03 19:02:14 +00:00
} else if (g_input_buffer[0] == T_NEW) {
// We don't compile "NEW".
new_statement();
2018-08-01 20:34:26 +00:00
} else {
2018-08-03 18:35:15 +00:00
// Compile the immediate mode line.
2018-08-03 19:02:14 +00:00
set_up_compile();
compile_buffer(g_input_buffer, INVALID_LINE_NUMBER);
complete_compile_and_execute();
2018-08-01 20:34:26 +00:00
}
} else {
// Stored mode. Add line to program.
// Return line to replace or delete, or location to insert new line.
uint8_t *line = find_line(line_number);
uint8_t *next_line = get_next_line(line);
uint8_t *end_of_program = get_end_of_program(line);
int16_t adjustment = 0;
2018-08-01 20:34:26 +00:00
if (next_line == 0 || get_line_number(line) != line_number) {
// Didn't find line. Insert it here.
2018-08-01 20:34:26 +00:00
// Next pointer, line number, line, and nul.
uint8_t buffer_length = strlen(g_input_buffer);
adjustment = 4 + buffer_length + 1;
// Shift rest of program over.
memmove(line + adjustment, line, end_of_program - line);
// Next line. Point to yourself initially, we'll adjust below.
*((uint8_t **) line) = line;
2018-08-01 20:34:26 +00:00
// Line number.
*((uint16_t *) (line + 2)) = line_number;
// Buffer and nul.
memmove(line + 4, g_input_buffer, buffer_length + 1);
2018-08-01 20:34:26 +00:00
} else {
// Found line.
if (g_input_buffer[0] == '\0') {
// Empty line, delete old one.
// Adjustment is negative.
adjustment = line - next_line;
memmove(line, next_line, end_of_program - next_line);
2018-08-01 20:34:26 +00:00
} else {
// Replace line.
// Compute adjustment.
uint8_t buffer_length = strlen(g_input_buffer);
adjustment = line - next_line + 4 + buffer_length + 1;
memmove(next_line + adjustment, next_line, end_of_program - next_line);
// Buffer and nul.
memmove(line + 4, g_input_buffer, buffer_length + 1);
}
}
if (adjustment != 0) {
// Adjust all the next pointers.
while ((next_line = get_next_line(line)) != 0) {
// Adjust by the amount we inserted or deleted.
next_line += adjustment;
*((uint8_t **) line) = next_line;
line = next_line;
2018-08-01 20:34:26 +00:00
}
}
}
2018-07-31 22:03:06 +00:00
}
int16_t main(void)
2018-07-31 22:03:06 +00:00
{
int16_t blink;
2018-07-28 05:30:44 +00:00
2018-08-04 02:15:18 +00:00
/*
2018-08-03 23:25:57 +00:00
// For testing generated code. TODO remove
{
int16_t a, b, c;
b = 5;
c = 6;
2018-08-03 23:41:52 +00:00
a = b == c;
2018-08-03 23:25:57 +00:00
}
2018-08-04 02:15:18 +00:00
*/
2018-08-03 23:25:57 +00:00
2018-08-03 19:02:14 +00:00
// Clear stored program.
new_statement();
2018-08-01 20:34:26 +00:00
2018-08-03 20:09:02 +00:00
// Clear out all variables.
clear_variables();
2018-08-01 20:34:26 +00:00
// Initialize UI.
2018-07-31 07:05:22 +00:00
home();
2018-07-28 05:30:44 +00:00
2018-07-31 20:42:21 +00:00
// Display the character set.
2018-08-02 06:29:37 +00:00
/*
if (1) {
int16_t i;
2018-08-01 20:34:26 +00:00
for (i = 0; i < 256; i++) {
2018-08-03 01:59:31 +00:00
uint8_t *loc;
2018-08-01 20:34:26 +00:00
// Fails with: unhandled instruction B2
move_cursor(i % 16, i >> 4);
// Works.
// move_cursor(i & 0x0F, i >> 4);
loc = cursor_pos();
*loc = i;
}
while(1);
2018-07-31 20:42:21 +00:00
}
2018-08-02 06:29:37 +00:00
*/
2018-07-31 20:42:21 +00:00
2018-08-01 20:34:26 +00:00
// Print title.
2018-07-31 22:03:06 +00:00
move_cursor((40 - title_length) / 2, 0);
print(title);
2018-07-28 05:30:44 +00:00
2018-07-31 07:05:22 +00:00
// Prompt.
2018-07-31 22:03:06 +00:00
print("\n\n]");
2018-07-31 07:05:22 +00:00
2018-07-31 19:48:29 +00:00
// Keyboard input.
2018-08-01 20:34:26 +00:00
blink = 0;
2018-08-01 17:58:03 +00:00
g_input_buffer_length = 0;
2018-07-31 19:48:29 +00:00
show_cursor();
2018-07-31 07:05:22 +00:00
while(1) {
2018-07-31 19:48:29 +00:00
// Blink cursor.
2018-08-01 20:34:26 +00:00
blink += 1;
if (blink == 3000) {
2018-08-01 17:58:03 +00:00
if (g_showing_cursor) {
2018-07-31 19:48:29 +00:00
hide_cursor();
} else {
show_cursor();
}
2018-08-01 20:34:26 +00:00
blink = 0;
2018-07-31 19:48:29 +00:00
}
if(keyboard_test()) {
hide_cursor();
while(keyboard_test()) {
uint8_t key;
2018-07-31 19:02:26 +00:00
2018-07-31 19:48:29 +00:00
key = keyboard_get();
if (key == 8) {
// Backspace.
2018-08-01 17:58:03 +00:00
if (g_input_buffer_length > 0) {
move_cursor(g_cursor_x - 1, g_cursor_y);
g_input_buffer_length -= 1;
2018-07-31 19:48:29 +00:00
}
} else if (key == 13) {
// Return.
2018-08-03 07:02:40 +00:00
clear_to_eol();
2018-08-03 01:59:31 +00:00
print_char('\n');
2018-07-31 22:03:06 +00:00
process_input_buffer();
print("\n]");
2018-08-01 17:58:03 +00:00
g_input_buffer_length = 0;
2018-07-31 19:48:29 +00:00
} else {
2018-08-01 17:58:03 +00:00
if (g_input_buffer_length < sizeof(g_input_buffer) - 1) {
print_char(key);
2018-08-01 17:58:03 +00:00
g_input_buffer[g_input_buffer_length++] = key;
2018-07-31 22:03:06 +00:00
}
2018-07-31 19:48:29 +00:00
}
}
2018-07-31 19:02:26 +00:00
2018-07-31 19:48:29 +00:00
show_cursor();
2018-07-31 19:02:26 +00:00
}
2018-07-31 07:05:22 +00:00
}
return 0;
2018-07-28 05:30:44 +00:00
}