0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2024-11-05 13:55:06 +00:00
uxn/uxn.c

193 lines
3.7 KiB
C
Raw Normal View History

2021-01-29 19:17:59 +00:00
#include <stdio.h>
2021-01-29 19:35:59 +00:00
/*
2021-01-29 19:17:59 +00:00
Copyright (c) 2021 Devine Lu Linvega
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.
*/
2021-01-30 05:56:19 +00:00
#define FLAG_HALT 0x01
#define FLAG_ZERO 0x02
#define FLAG_CARRY 0x04
#define FLAG_TRAPS 0x08
2021-01-29 19:35:59 +00:00
#define STACK_DEPTH 256
2021-01-29 20:14:37 +00:00
typedef unsigned char Uint8;
typedef struct {
2021-01-30 05:56:19 +00:00
Uint8 literal;
Uint8 status, counter;
Uint8 memory[STACK_DEPTH];
2021-01-31 05:31:49 +00:00
Uint8 mptr, sptr, rsptr;
2021-01-30 05:56:19 +00:00
Uint8 stack[STACK_DEPTH];
2021-01-31 05:31:49 +00:00
Uint8 rstack[STACK_DEPTH];
2021-01-30 05:56:19 +00:00
Uint8 address[STACK_DEPTH];
2021-01-29 20:14:37 +00:00
} Computer;
2021-01-30 22:25:48 +00:00
Computer cpu;
#pragma mark - Helpers
2021-01-30 05:56:19 +00:00
void
2021-01-30 22:25:48 +00:00
setflag(char flag, int b)
2021-01-30 05:56:19 +00:00
{
if(b)
2021-01-30 22:25:48 +00:00
cpu.status |= flag;
2021-01-30 05:56:19 +00:00
else
2021-01-30 22:25:48 +00:00
cpu.status &= (~flag);
2021-01-30 05:56:19 +00:00
}
int
2021-01-30 22:25:48 +00:00
getflag(char flag)
2021-01-30 05:56:19 +00:00
{
2021-01-30 22:25:48 +00:00
return cpu.status & flag;
2021-01-30 05:56:19 +00:00
}
2021-01-29 19:35:59 +00:00
void
2021-01-29 21:59:16 +00:00
echo(Uint8 *s, Uint8 len, char *name)
2021-01-29 19:35:59 +00:00
{
int i;
2021-01-29 21:59:16 +00:00
printf("%s\n", name);
2021-01-29 20:14:37 +00:00
for(i = 0; i < len; ++i) {
2021-01-29 19:35:59 +00:00
if(i % 16 == 0)
printf("\n");
2021-01-30 05:56:19 +00:00
printf("%02x ", s[i]);
2021-01-29 19:35:59 +00:00
}
2021-01-30 05:56:19 +00:00
printf("\n\n");
2021-01-29 19:35:59 +00:00
}
2021-01-31 05:31:49 +00:00
void
spush(Uint8 v)
{
cpu.stack[cpu.sptr++] = v;
}
Uint8
spop(void)
{
return cpu.stack[--cpu.sptr];
}
2021-01-30 22:25:48 +00:00
2021-01-29 20:14:37 +00:00
void
2021-01-31 05:31:49 +00:00
rspush(Uint8 v)
2021-01-29 20:14:37 +00:00
{
2021-01-31 05:31:49 +00:00
cpu.rstack[cpu.rsptr++] = v;
2021-01-29 20:14:37 +00:00
}
2021-01-30 22:25:48 +00:00
Uint8
2021-01-31 05:31:49 +00:00
rspop(void)
2021-01-29 20:14:37 +00:00
{
2021-01-31 05:31:49 +00:00
return cpu.rstack[--cpu.rsptr];
2021-01-29 20:14:37 +00:00
}
2021-01-31 05:31:49 +00:00
#pragma mark - Operations
/* clang-format off */
void op_brk() { setflag(FLAG_HALT, 1); }
void op_lit() { cpu.literal += cpu.memory[cpu.mptr++]; }
void op_nop() { }
void op_drp() { spop(); }
void op_dup() { spush(cpu.stack[cpu.sptr - 1]); }
void op_swp() { Uint8 b = spop(), a = spop(); spush(b); spush(a); }
void op_ovr() { spush(cpu.stack[cpu.sptr - 2]); }
void op_rot() { Uint8 c = spop(),b = spop(),a = spop(); spush(b); spush(c); spush(a); }
void op_jmp() { cpu.mptr = spop(); }
void op_jsr() { rspush(cpu.mptr); cpu.mptr = spop(); }
void op_jeq() { if(getflag(FLAG_ZERO)) cpu.mptr = spop(); }
void op_rts() { cpu.mptr = rspop(); }
void op_equ() { setflag(FLAG_ZERO, spop() == spop()); }
void op_neq() { setflag(FLAG_ZERO, spop() != spop()); }
void op_lth() { setflag(FLAG_ZERO, spop() < spop()); }
void op_gth() { setflag(FLAG_ZERO, spop() > spop()); }
void op_and() { spush(spop() & spop()); }
void op_ora() { spush(spop() | spop()); }
void op_rol() { spush(spop() << 1); }
void op_ror() { spush(spop() >> 1); }
void op_add() { spush(spop() + spop()); }
void op_sub() { spush(spop() - spop()); }
void op_mul() { spush(spop() * spop()); }
void op_div() { spush(spop() / spop()); }
void (*ops[])(void) = {
op_brk, op_lit, op_nop, op_drp, op_dup, op_swp, op_ovr, op_rot,
op_jmp, op_jsr, op_jeq, op_rts, op_equ, op_neq, op_gth, op_lth,
op_and, op_ora, op_rol, op_ror, op_add, op_sub, op_mul, op_div};
/* clang-format on */
2021-01-29 20:14:37 +00:00
void
2021-01-30 22:25:48 +00:00
reset(void)
2021-01-29 20:14:37 +00:00
{
2021-01-30 05:56:19 +00:00
int i;
2021-01-30 22:25:48 +00:00
cpu.status = 0x00;
cpu.counter = 0x00;
cpu.mptr = 0x00;
cpu.sptr = 0x00;
cpu.literal = 0x00;
2021-01-30 05:56:19 +00:00
for(i = 0; i < 256; i++)
2021-01-30 22:25:48 +00:00
cpu.stack[i] = 0x00;
2021-01-29 20:14:37 +00:00
}
int
2021-01-30 05:56:19 +00:00
error(char *name)
2021-01-29 20:14:37 +00:00
{
2021-01-30 05:56:19 +00:00
printf("Error: %s\n", name);
return 0;
}
void
2021-01-30 22:25:48 +00:00
load(FILE *f)
2021-01-30 05:56:19 +00:00
{
2021-01-30 22:25:48 +00:00
fread(cpu.memory, sizeof(cpu.memory), 1, f);
2021-01-30 05:56:19 +00:00
}
2021-01-29 21:59:16 +00:00
2021-01-30 05:56:19 +00:00
void
2021-01-30 22:25:48 +00:00
eval()
2021-01-30 05:56:19 +00:00
{
2021-01-30 22:25:48 +00:00
Uint8 instr = cpu.memory[cpu.mptr++];
if(cpu.literal > 0) {
2021-01-31 05:31:49 +00:00
spush(instr);
2021-01-30 22:25:48 +00:00
cpu.literal--;
2021-01-30 05:56:19 +00:00
return;
}
2021-01-31 05:31:49 +00:00
if(instr < 24)
(*ops[instr])();
2021-01-29 20:14:37 +00:00
}
void
2021-01-30 22:25:48 +00:00
run(void)
2021-01-29 20:14:37 +00:00
{
2021-01-30 05:56:19 +00:00
int i;
2021-01-30 22:25:48 +00:00
while((cpu.status & FLAG_HALT) == 0)
2021-01-30 05:56:19 +00:00
eval(cpu);
/* debug */
2021-01-30 22:25:48 +00:00
printf("ended @ %d | ", cpu.counter);
2021-01-30 05:56:19 +00:00
for(i = 0; i < 4; i++)
2021-01-30 22:25:48 +00:00
printf("%d-", (cpu.status & (1 << i)) != 0);
2021-01-30 05:56:19 +00:00
printf("\n\n");
2021-01-29 20:14:37 +00:00
}
2021-01-29 19:17:59 +00:00
int
main(int argc, char *argv[])
{
2021-01-29 20:14:37 +00:00
FILE *f;
if(argc < 2)
return error("No input.");
if(!(f = fopen(argv[1], "rb")))
return error("Missing input.");
2021-01-30 22:25:48 +00:00
reset();
load(f);
run();
2021-01-29 20:14:37 +00:00
/* print result */
2021-01-30 05:56:19 +00:00
echo(cpu.stack, 0x40, "stack");
echo(cpu.memory, 0x40, "memory");
2021-01-29 19:17:59 +00:00
return 0;
}