uxn11/src/devices/system.c

145 lines
2.7 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.
*/
2023-08-16 16:10:42 -04:00
char *boot_rom;
2023-10-31 13:59:42 -04:00
Uint16 dev_vers[0x10];
2023-08-16 16:10:42 -04:00
static int
system_load(Uxn *u, char *filename)
{
int l, i = 0;
FILE *f = fopen(filename, "rb");
if(!f)
return 0;
l = fread(&u->ram[PAGE_PROGRAM], 0x10000 - PAGE_PROGRAM, 1, f);
while(l && ++i < RAM_PAGES)
l = fread(u->ram + 0x10000 * i, 0x10000, 1, f);
fclose(f);
return 1;
}
2022-03-26 21:32:46 -04:00
static void
system_print(Stack *s, char *name)
{
Uint8 i;
2023-10-31 14:13:27 -04:00
fprintf(stderr, "%s ", name);
for(i = 0; i < 9; i++) {
Uint8 pos = s->ptr - 4 + i;
fprintf(stderr, !pos ? "[%02x]" : i == 4 ? "<%02x>" :
2024-01-10 20:41:35 -05:00
" %02x ",
2023-10-31 14:13:27 -04:00
s->dat[pos]);
}
2022-03-26 21:32:46 -04:00
fprintf(stderr, "\n");
}
2023-04-10 17:32:54 -04:00
int
system_error(char *msg, const char *err)
{
fprintf(stderr, "%s: %s\n", msg, err);
2023-04-17 14:36:17 -04:00
fflush(stderr);
2023-04-10 17:32:54 -04:00
return 0;
}
2023-04-17 14:36:17 -04:00
void
system_inspect(Uxn *u)
{
system_print(&u->wst, "wst");
system_print(&u->rst, "rst");
}
2023-08-08 19:26:13 -04:00
int
2023-08-25 12:40:25 -04:00
system_version(char *name, char *date)
{
2023-08-08 19:26:13 -04:00
printf("%s, %s.\n", name, date);
return 0;
2023-05-01 01:03:35 -04:00
}
2023-08-16 16:10:42 -04:00
void
2023-08-25 00:25:11 -04:00
system_boot(Uxn *u, int soft)
{
2023-08-16 16:10:42 -04:00
int i;
for(i = 0x100 * soft; i < 0x10000; i++)
u->ram[i] = 0;
for(i = 0x0; i < 0x100; i++)
u->dev[i] = 0;
u->wst.ptr = 0;
u->rst.ptr = 0;
2023-08-19 10:59:18 -04:00
}
void
system_reboot(Uxn *u, char *rom, int soft)
{
system_boot(u, soft);
2023-08-16 16:10:42 -04:00
if(system_load(u, boot_rom))
if(uxn_eval(u, PAGE_PROGRAM))
boot_rom = rom;
}
int
system_init(Uxn *u, Uint8 *ram, char *rom)
{
u->ram = ram;
2023-08-19 10:59:18 -04:00
system_boot(u, 0);
2023-08-16 16:10:42 -04:00
if(!system_load(u, rom))
if(!system_load(u, "boot.rom"))
return system_error("Init", "Failed to load rom.");
boot_rom = rom;
return 1;
}
2022-03-26 21:32:46 -04:00
/* IO */
Uint8
system_dei(Uxn *u, Uint8 addr)
{
switch(addr) {
case 0x4: return u->wst.ptr;
case 0x5: return u->rst.ptr;
default: return u->dev[addr];
}
}
2022-03-26 21:32:46 -04:00
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-08-16 17:31:40 -04:00
Uint8 *ram;
Uint16 addr;
2022-03-26 21:32:46 -04:00
switch(port) {
2023-01-28 19:47:41 -05:00
case 0x3:
2023-08-16 17:31:40 -04:00
ram = u->ram;
addr = PEEK2(d + 2);
2023-08-16 16:10:42 -04:00
if(ram[addr] == 0x1) {
Uint16 i, length = PEEK2(ram + addr + 1);
Uint16 a_page = PEEK2(ram + addr + 1 + 2), a_addr = PEEK2(ram + addr + 1 + 4);
Uint16 b_page = PEEK2(ram + addr + 1 + 6), b_addr = PEEK2(ram + addr + 1 + 8);
int src = (a_page % RAM_PAGES) * 0x10000, dst = (b_page % RAM_PAGES) * 0x10000;
for(i = 0; i < length; i++)
ram[dst + (Uint16)(b_addr + i)] = ram[src + (Uint16)(a_addr + i)];
2023-08-08 19:26:13 -04:00
}
2023-05-01 01:03:35 -04:00
break;
case 0x4:
u->wst.ptr = d[4];
break;
case 0x5:
u->rst.ptr = d[5];
break;
case 0xe:
2023-04-10 13:53:30 -04:00
system_inspect(u);
break;
2022-03-26 21:32:46 -04:00
}
}