uxn/uxn.c

175 lines
3.1 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];
Uint8 mptr, sptr;
Uint8 stack[STACK_DEPTH];
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-30 22:25:48 +00:00
#pragma mark - Operations
2021-01-29 20:14:37 +00:00
void
2021-01-30 05:56:19 +00:00
op_push(Uint8 *s, Uint8 *ptr, Uint8 v)
2021-01-29 20:14:37 +00:00
{
2021-01-30 22:25:48 +00:00
s[(*ptr)++] = v;
2021-01-29 20:14:37 +00:00
}
2021-01-30 22:25:48 +00:00
Uint8
2021-01-30 05:56:19 +00:00
op_pop(Uint8 *s, Uint8 *ptr)
2021-01-29 20:14:37 +00:00
{
2021-01-30 22:25:48 +00:00
return s[--*ptr];
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++];
Uint8 a, b, c;
if(cpu.literal > 0) {
printf("push: %02x[%d](%d)\n", instr, cpu.literal, cpu.sptr);
op_push(cpu.stack, &cpu.sptr, instr);
cpu.literal--;
2021-01-30 05:56:19 +00:00
return;
}
switch(instr) {
2021-01-30 22:25:48 +00:00
case 0x0: setflag(FLAG_HALT, 1); break;
case 0x1: cpu.literal += cpu.memory[cpu.mptr++]; break;
case 0x2: printf("??\n"); break;
case 0x3: /* pop */
op_pop(cpu.stack, &cpu.sptr);
break;
case 0x4: /* dup */
op_push(cpu.stack, &cpu.sptr, cpu.stack[cpu.sptr - 1]);
break;
case 0x5: /* swp */
b = op_pop(cpu.stack, &cpu.sptr);
a = op_pop(cpu.stack, &cpu.sptr);
op_push(cpu.stack, &cpu.sptr, b);
op_push(cpu.stack, &cpu.sptr, a);
break;
case 0x6: /* ovr */
op_push(cpu.stack, &cpu.sptr, cpu.stack[cpu.sptr - 2]);
break;
case 0x7: /* rot */
c = op_pop(cpu.stack, &cpu.sptr);
b = op_pop(cpu.stack, &cpu.sptr);
a = op_pop(cpu.stack, &cpu.sptr);
op_push(cpu.stack, &cpu.sptr, b);
op_push(cpu.stack, &cpu.sptr, c);
op_push(cpu.stack, &cpu.sptr, a);
break;
2021-01-30 05:56:19 +00:00
default: printf("Unknown instruction: #%02x\n", 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;
}