uxn/uxnasm.c

277 lines
4.4 KiB
C
Raw Normal View History

2021-01-29 20:14:37 +00:00
#include <stdio.h>
/*
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-29 21:59:16 +00:00
#define PRGLEN 256
2021-01-31 05:31:49 +00:00
#define LABELIDLEN 32
2021-01-29 20:14:37 +00:00
typedef unsigned char Uint8;
2021-01-29 21:59:16 +00:00
typedef struct {
2021-02-04 05:53:56 +00:00
int ptr;
2021-01-30 01:49:10 +00:00
Uint8 data[PRGLEN];
2021-01-29 21:59:16 +00:00
} Program;
2021-01-31 05:31:49 +00:00
typedef struct {
Uint8 addr;
char name[LABELIDLEN];
} Label;
int labelslen;
Label labels[256];
2021-01-30 22:25:48 +00:00
2021-02-02 04:21:27 +00:00
/* clang-format off */
2021-01-30 05:56:19 +00:00
char opcodes[][4] = {
2021-02-02 04:21:27 +00:00
"BRK", "RTS", "LIT", "POP", "DUP", "SWP", "OVR", "ROT",
2021-02-04 05:53:56 +00:00
"JMU", "JSU", "JMC", "JSC", "EQU", "NEQ", "GTH", "LTH",
2021-02-02 04:21:27 +00:00
"AND", "ORA", "ROL", "ROR", "ADD", "SUB", "MUL", "DIV"};
/* clang-format on */
2021-01-30 01:49:10 +00:00
2021-01-29 21:59:16 +00:00
Program p;
#pragma mark - Helpers
int
scmp(char *a, char *b) /* string compare */
{
int i = 0;
while(a[i] == b[i])
if(!a[i++])
return 1;
return 0;
}
2021-01-31 05:31:49 +00:00
char *
scpy(char *src, char *dst, int len) /* string copy */
{
int i = 0;
while((dst[i] = src[i]) && i < len - 2)
i++;
dst[i + 1] = '\0';
return dst;
}
2021-02-02 04:21:27 +00:00
int
slen(char *s) /* string length */
{
int i = 0;
while(s[i] && s[++i])
;
return i;
}
2021-01-30 01:49:10 +00:00
char *
suca(char *s) /* string to uppercase */
{
int i = 0;
char c;
while((c = s[i]))
s[i++] = c >= 'a' && c <= 'z' ? c - ('a' - 'A') : c;
return s;
}
2021-01-30 22:25:48 +00:00
int
sihx(char *s)
{
int i = 0;
char c;
while((c = s[i++]))
2021-01-31 05:31:49 +00:00
if(!(c >= '0' && c <= '9') && !(c >= 'a' && c <= 'f') && !(c >= 'A' && c <= 'F'))
2021-01-30 22:25:48 +00:00
return 0;
return 1;
}
2021-01-29 21:59:16 +00:00
int
shex(char *s) /* string to num */
{
int n = 0, i = 0;
char c;
while((c = s[i++]))
if(c >= '0' && c <= '9')
n = n * 16 + (c - '0');
2021-01-30 22:25:48 +00:00
else if(c >= 'A' && c <= 'F')
n = n * 16 + 10 + (c - 'A');
2021-01-31 05:31:49 +00:00
else if(c >= 'a' && c <= 'f')
n = n * 16 + 10 + (c - 'f');
2021-01-29 21:59:16 +00:00
return n;
}
2021-01-30 22:25:48 +00:00
#pragma mark - Parser
void
2021-02-02 04:21:27 +00:00
pushprg(Uint8 hex)
2021-01-30 22:25:48 +00:00
{
2021-02-04 05:53:56 +00:00
p.data[p.ptr++] = hex;
2021-01-30 22:25:48 +00:00
}
2021-02-02 04:21:27 +00:00
void
pushlabel(Label *l)
{
pushprg(0x02);
pushprg(0x01);
pushprg(l->addr);
}
void
pushliteral(char *w)
{
int len = slen(w) / 2, value = shex(w);
pushprg(0x02);
pushprg(len);
switch(len) {
case 1:
pushprg(value);
break;
case 2:
pushprg(value >> 8);
pushprg(value);
break;
case 3:
pushprg(value >> 16);
pushprg(value >> 8);
pushprg(value);
break;
}
}
2021-01-30 22:25:48 +00:00
void
addlabel(char *id, Uint8 addr)
{
2021-01-31 05:31:49 +00:00
Label *l = &labels[labelslen++];
scpy(suca(id), l->name, LABELIDLEN);
l->addr = addr;
2021-02-04 05:53:56 +00:00
printf("New label: %s[0x%02x]\n", l->name, l->addr);
2021-01-30 22:25:48 +00:00
}
void
addconst(char *id, Uint8 value)
{
2021-02-04 05:53:56 +00:00
printf("New const: %s[%02x]\n", id, value);
2021-01-30 22:25:48 +00:00
}
2021-01-29 21:59:16 +00:00
2021-01-31 05:31:49 +00:00
Label *
findlabel(char *s)
{
int i;
for(i = 0; i < labelslen; ++i)
if(scmp(labels[i].name, s))
return &labels[i];
return NULL;
}
2021-01-29 21:59:16 +00:00
Uint8
2021-01-30 22:25:48 +00:00
findop(char *s)
2021-01-29 21:59:16 +00:00
{
2021-01-30 01:49:10 +00:00
int i;
2021-01-31 05:31:49 +00:00
for(i = 0; i < 24; ++i)
2021-01-30 22:25:48 +00:00
if(scmp(opcodes[i], s))
2021-01-30 01:49:10 +00:00
return i;
2021-01-30 22:25:48 +00:00
return 0;
}
2021-01-31 05:31:49 +00:00
int
2021-02-04 05:53:56 +00:00
ismarker(char *w)
2021-01-31 05:31:49 +00:00
{
2021-02-04 05:53:56 +00:00
return w[0] == '(' || w[0] == ')' || w[0] == '{' || w[0] == '}';
2021-01-31 05:31:49 +00:00
}
2021-01-30 22:25:48 +00:00
int
2021-02-04 05:53:56 +00:00
iscomment(char *w, int *skip)
2021-01-30 22:25:48 +00:00
{
if(w[0] == '>') {
*skip = 0;
return 1;
}
if(w[0] == '<') *skip = 1;
if(*skip) return 1;
return 0;
2021-01-30 01:49:10 +00:00
}
2021-02-04 05:53:56 +00:00
int
getlength(char *w)
{
if(findop(w) || scmp(w, "BRK")) return 1;
if(w[0] == '.') return 3;
if(w[0] == ':') return 0;
if(w[0] == ';') return 0;
if(w[0] == '@') return 0;
if(sihx(w)) { return slen(w) / 2 + 2; }
if(ismarker(w)) return 0;
printf("Unknown length %s\n", w);
return 0;
}
2021-01-29 20:14:37 +00:00
void
pass1(FILE *f)
{
2021-01-30 22:25:48 +00:00
int skip = 0;
2021-01-31 05:31:49 +00:00
int addr = 0;
2021-02-04 05:53:56 +00:00
int vars = 0;
2021-01-29 21:59:16 +00:00
char word[64];
while(fscanf(f, "%s", word) == 1) {
2021-02-04 05:53:56 +00:00
if(iscomment(word, &skip)) continue;
2021-01-31 05:31:49 +00:00
if(word[0] == ':') addlabel(word + 1, addr);
2021-02-04 05:53:56 +00:00
if(word[0] == ';') addlabel(word + 1, vars++);
2021-01-31 05:31:49 +00:00
addr += getlength(word);
2021-01-30 22:25:48 +00:00
}
rewind(f);
}
void
pass2(FILE *f)
{
int skip = 0;
char word[64];
while(fscanf(f, "%s", word) == 1) {
2021-02-01 19:58:47 +00:00
Uint8 op = 0;
2021-01-31 05:31:49 +00:00
Label *l;
if(word[0] == ':') continue;
2021-02-04 05:53:56 +00:00
if(word[0] == ';') continue;
2021-01-30 22:25:48 +00:00
suca(word);
2021-02-04 05:53:56 +00:00
if(iscomment(word, &skip) || ismarker(word)) continue;
if(word[0] == '@')
p.ptr = shex(word + 1);
else if((op = findop(word)) || scmp(word, "BRK"))
2021-02-02 04:21:27 +00:00
pushprg(op);
else if((l = findlabel(word + 1)))
pushlabel(l);
else if(sihx(word))
pushliteral(word);
else
printf("Unknown label: %s\n", word);
2021-01-29 20:14:37 +00:00
}
}
int
error(char *name)
{
printf("Error: %s\n", name);
return 0;
}
int
main(int argc, char *argv[])
{
FILE *f;
if(argc < 3)
return error("No input.");
if(!(f = fopen(argv[1], "r")))
return error("Missing input.");
pass1(f);
2021-01-30 22:25:48 +00:00
pass2(f);
2021-01-29 21:59:16 +00:00
fwrite(p.data, sizeof(p.data), 1, fopen(argv[2], "wb"));
fclose(f);
2021-01-29 20:14:37 +00:00
return 0;
}