uxn11/src/devices/system.c

109 lines
2.3 KiB
C
Raw Normal View History

2022-03-27 13:01:06 -04:00
#include <stdio.h>
2023-01-28 19:47:41 -05:00
#include <stdlib.h>
2022-03-27 13:01:06 -04:00
2022-03-26 21:32:46 -04:00
#include "../uxn.h"
#include "system.h"
/*
2023-01-28 19:47:41 -05:00
Copyright (c) 2022-2023 Devine Lu Linvega, Andrew Alderwick
2022-03-26 21:32:46 -04:00
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE.
*/
static const char *errors[] = {
"underflow",
"overflow",
2022-06-13 14:08:33 -04:00
"division by zero"};
2022-03-26 21:32:46 -04:00
static void
system_print(Stack *s, char *name)
{
Uint8 i;
fprintf(stderr, "<%s>", name);
for(i = 0; i < s->ptr; i++)
fprintf(stderr, " %02x", s->dat[i]);
if(!i)
fprintf(stderr, " empty");
fprintf(stderr, "\n");
}
void
system_inspect(Uxn *u)
{
system_print(u->wst, "wst");
system_print(u->rst, "rst");
2022-03-26 21:32:46 -04:00
}
2023-02-02 11:45:03 -05:00
/* RAM */
2023-01-28 19:47:41 -05:00
void
2023-02-02 11:45:03 -05:00
system_cmd(Uint8 *ram, Uint16 addr)
2023-01-28 19:47:41 -05:00
{
Uint16 a = addr, i = 0;
Uint8 o = ram[a++];
if(o == 1) {
Uint16 length = (ram[a++] << 8) + ram[a++];
Uint16 src_page = ((ram[a++] << 8) + ram[a++]) % 16, src_addr = (ram[a++] << 8) + ram[a++];
Uint16 dst_page = ((ram[a++] << 8) + ram[a++]) % 16, dst_addr = (ram[a++] << 8) + ram[a];
for(i = 0; i < length; i++)
ram[dst_page * 0x10000 + dst_addr + i] = ram[src_page * 0x10000 + src_addr + i];
}
}
2023-02-02 11:45:03 -05:00
int
system_load(Uxn *u, char *filename)
{
int l, i = 0;
FILE *f = fopen(filename, "rb");
if(!f)
return 0;
2023-02-02 12:34:14 -05:00
l = fread(&u->ram[PAGE_PROGRAM], 0x10000 - PAGE_PROGRAM, 1, f);
2023-02-02 11:45:03 -05:00
while(l && ++i < RAM_PAGES)
2023-02-02 12:34:14 -05:00
l = fread(u->ram + 0x10000 * i, 0x10000, 1, f);
2023-02-02 11:45:03 -05:00
fclose(f);
return 1;
}
2022-03-26 21:32:46 -04:00
/* IO */
void
2022-04-05 12:35:49 -04:00
system_deo(Uxn *u, Uint8 *d, Uint8 port)
2022-03-26 21:32:46 -04:00
{
2023-01-28 19:47:41 -05:00
Uint16 a;
2022-03-26 21:32:46 -04:00
switch(port) {
2023-01-28 19:47:41 -05:00
case 0x3:
PEKDEV(a, 0x2);
2023-02-02 11:45:03 -05:00
system_cmd(u->ram, a);
2023-01-28 19:47:41 -05:00
break;
case 0xe:
if(u->wst->ptr || u->rst->ptr) system_inspect(u);
break;
2022-03-26 21:32:46 -04:00
}
}
2023-02-02 11:45:03 -05:00
/* Error */
int
uxn_halt(Uxn *u, Uint8 instr, Uint8 err, Uint16 addr)
{
Uint8 *d = &u->dev[0x00];
Uint16 handler = GETVEC(d);
if(handler) {
u->wst->ptr = 4;
u->wst->dat[0] = addr >> 0x8;
u->wst->dat[1] = addr & 0xff;
u->wst->dat[2] = instr;
u->wst->dat[3] = err;
return uxn_eval(u, handler);
} else {
system_inspect(u);
fprintf(stderr, "%s %s, by %02x at 0x%04x.\n", (instr & 0x40) ? "Return-stack" : "Working-stack", errors[err - 1], instr, addr);
}
return 0;
}