WIP C harness

This commit is contained in:
Wesley Moore 2025-03-08 11:04:05 +10:00
parent 5f3cbbb8a4
commit ddefa0cac0
No known key found for this signature in database
4 changed files with 23 additions and 3 deletions

View file

@ -57,7 +57,7 @@ tests/btohex.elf: mem.o hex.o debug.o tests/btohex.o
tests/tohex.elf: hex.o tests/tohex.o
$(LD) -m elf32lriscv -T link.ld $^ -o $@
tests/harness.elf: tests/harness.o
tests/harness.elf: tests/harness.o tests/charness.o
$(LD) -m elf32lriscv -T link.ld $^ -o $@
%.o : %.s

8
calc.h Normal file
View file

@ -0,0 +1,8 @@
#ifndef CALC_H
#define CALC_H
typedef unsigned char bool;
typedef unsigned char u8;
typedef unsigned int uint;
#endif

11
tests/charness.c Normal file
View file

@ -0,0 +1,11 @@
#include "../calc.h"
// TODO: make these pascal strings
extern bool streq(u8 *, uint, u8 *, uint);
extern int read(u8 *, uint); // read from stdin
void _start(void) {
}

View file

@ -3,7 +3,8 @@
.org 0
# Provide program starting address to linker
.global _start
.global read
.global streq
# .extern fmt_decimal
@ -25,7 +26,7 @@ inbuf: .skip 80
.text
_start:
_start2:
la a0, inbuf
li a1, 80
jal read