2020-03-10 13:26:02 +11:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <termios.h>
|
|
|
|
#include "../emul.h"
|
2020-03-25 12:13:02 +11:00
|
|
|
#include "forth1-bin.h"
|
2020-03-10 13:26:02 +11:00
|
|
|
|
|
|
|
// in sync with glue.asm
|
2020-03-12 15:14:44 +11:00
|
|
|
#define RAMSTART 0x900
|
2020-03-10 13:26:02 +11:00
|
|
|
#define STDIO_PORT 0x00
|
2020-03-20 06:43:48 +11:00
|
|
|
// This binary is also used for automated tests and those tests, when
|
|
|
|
// failing, send a non-zero value to RET_PORT to indicate failure
|
|
|
|
#define RET_PORT 0x01
|
2020-03-10 13:26:02 +11:00
|
|
|
|
|
|
|
static int running;
|
2020-03-12 10:03:47 +11:00
|
|
|
static FILE *fp;
|
2020-03-20 06:43:48 +11:00
|
|
|
static int retcode = 0;
|
2020-03-10 13:26:02 +11:00
|
|
|
|
|
|
|
static uint8_t iord_stdio()
|
|
|
|
{
|
2020-03-12 10:03:47 +11:00
|
|
|
int c = getc(fp);
|
2020-03-10 13:26:02 +11:00
|
|
|
if (c == EOF) {
|
|
|
|
running = 0;
|
|
|
|
}
|
|
|
|
return (uint8_t)c;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void iowr_stdio(uint8_t val)
|
|
|
|
{
|
|
|
|
if (val == 0x04) { // CTRL+D
|
|
|
|
running = 0;
|
|
|
|
} else {
|
|
|
|
putchar(val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-20 06:43:48 +11:00
|
|
|
static void iowr_ret(uint8_t val)
|
|
|
|
{
|
|
|
|
retcode = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-10 13:26:02 +11:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2020-03-12 10:03:47 +11:00
|
|
|
bool tty = false;
|
2020-03-10 13:26:02 +11:00
|
|
|
struct termios termInfo;
|
2020-03-12 10:03:47 +11:00
|
|
|
if (argc == 2) {
|
|
|
|
fp = fopen(argv[1], "r");
|
|
|
|
if (fp == NULL) {
|
|
|
|
fprintf(stderr, "Can't open %s\n", argv[1]);
|
2020-03-10 13:26:02 +11:00
|
|
|
return 1;
|
|
|
|
}
|
2020-03-12 10:03:47 +11:00
|
|
|
} else if (argc == 1) {
|
|
|
|
fp = stdin;
|
|
|
|
tty = isatty(fileno(stdin));
|
|
|
|
if (tty) {
|
|
|
|
// Turn echo off: the shell takes care of its own echoing.
|
|
|
|
if (tcgetattr(0, &termInfo) == -1) {
|
|
|
|
printf("Can't setup terminal.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
termInfo.c_lflag &= ~ECHO;
|
|
|
|
termInfo.c_lflag &= ~ICANON;
|
|
|
|
tcsetattr(0, TCSAFLUSH, &termInfo);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Usage: ./forth [filename]\n");
|
|
|
|
return 1;
|
2020-03-10 13:26:02 +11:00
|
|
|
}
|
|
|
|
Machine *m = emul_init();
|
|
|
|
m->ramstart = RAMSTART;
|
|
|
|
m->iord[STDIO_PORT] = iord_stdio;
|
|
|
|
m->iowr[STDIO_PORT] = iowr_stdio;
|
2020-03-20 06:43:48 +11:00
|
|
|
m->iowr[RET_PORT] = iowr_ret;
|
2020-03-10 13:26:02 +11:00
|
|
|
// initialize memory
|
|
|
|
for (int i=0; i<sizeof(KERNEL); i++) {
|
|
|
|
m->mem[i] = KERNEL[i];
|
|
|
|
}
|
2020-04-01 23:54:01 +11:00
|
|
|
|
|
|
|
// Our binaries don't have their LATEST offset set yet. We do this
|
|
|
|
// on the fly, which is the simplest way to proceed ( bash script to update
|
|
|
|
// LATEST after compilation is too simplicated )
|
|
|
|
m->mem[0x08] = sizeof(KERNEL) & 0xff;
|
|
|
|
m->mem[0x09] = sizeof(KERNEL) >> 8;
|
2020-03-10 13:26:02 +11:00
|
|
|
// Run!
|
|
|
|
running = 1;
|
|
|
|
|
|
|
|
while (running && emul_step());
|
|
|
|
|
|
|
|
if (tty) {
|
2020-03-12 10:03:47 +11:00
|
|
|
printf("\nDone!\n");
|
2020-03-10 13:26:02 +11:00
|
|
|
termInfo.c_lflag |= ECHO;
|
|
|
|
termInfo.c_lflag |= ICANON;
|
|
|
|
tcsetattr(0, TCSAFLUSH, &termInfo);
|
|
|
|
emul_printdebug();
|
|
|
|
}
|
2020-03-12 10:03:47 +11:00
|
|
|
fclose(fp);
|
2020-03-20 06:43:48 +11:00
|
|
|
return retcode;
|
2020-03-10 13:26:02 +11:00
|
|
|
}
|