Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
a3f6adcbfc |
5 changed files with 44 additions and 19 deletions
2
Makefile
2
Makefile
|
@ -57,7 +57,7 @@ tests/btohex.elf: mem.o hex.o debug.o tests/btohex.o
|
||||||
tests/tohex.elf: hex.o tests/tohex.o
|
tests/tohex.elf: hex.o tests/tohex.o
|
||||||
$(LD) -m elf32lriscv -T link.ld $^ -o $@
|
$(LD) -m elf32lriscv -T link.ld $^ -o $@
|
||||||
|
|
||||||
tests/harness.elf: tests/harness.o tests/charness.o
|
tests/harness.elf: math.o fmt.o tests/harness.o tests/charness.o
|
||||||
$(LD) -m elf32lriscv -T link.ld $^ -o $@
|
$(LD) -m elf32lriscv -T link.ld $^ -o $@
|
||||||
|
|
||||||
%.o : %.s
|
%.o : %.s
|
||||||
|
|
9
calc.h
9
calc.h
|
@ -1,9 +1,12 @@
|
||||||
#ifndef CALC_H
|
#ifndef CALC_H
|
||||||
#define CALC_H
|
#define CALC_H
|
||||||
|
|
||||||
typedef unsigned char bool;
|
#include <stddef.h>
|
||||||
#define true 1;
|
#include <stdbool.h>
|
||||||
#define false 0;
|
|
||||||
|
// typedef unsigned char bool;
|
||||||
|
// #define true 1;
|
||||||
|
// #define false 0;
|
||||||
|
|
||||||
typedef unsigned char u8;
|
typedef unsigned char u8;
|
||||||
typedef unsigned int uint;
|
typedef unsigned int uint;
|
||||||
|
|
|
@ -2,11 +2,12 @@
|
||||||
|
|
||||||
#define BUF_SIZE 80
|
#define BUF_SIZE 80
|
||||||
|
|
||||||
#define make_str(s) { sizeof(s), (const u8 *)s }
|
#define make_str(s) { sizeof(s) - 1, (const u8 *)s }
|
||||||
#define make_test(name) { make_str(#name), name }
|
#define make_test(name) { make_str(#name), name }
|
||||||
|
|
||||||
extern bool streq(const u8 *, uint, const u8 *, uint);
|
extern bool streq(const u8 *, uint, const u8 *, uint);
|
||||||
extern int read(u8 *, uint); // read from stdin
|
extern int read(u8 *, uint); // read from stdin
|
||||||
|
extern void exit(int);
|
||||||
|
|
||||||
// Tests
|
// Tests
|
||||||
extern void count_digits(void);
|
extern void count_digits(void);
|
||||||
|
@ -15,16 +16,20 @@ extern void fmt_decimal(void);
|
||||||
typedef struct {
|
typedef struct {
|
||||||
u8 len;
|
u8 len;
|
||||||
const u8 *data;
|
const u8 *data;
|
||||||
} str;
|
} Str;
|
||||||
|
|
||||||
typedef void (*testfn)(void);
|
typedef void (*Testfn)(void);
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
str name;
|
Str name;
|
||||||
testfn fn;
|
Testfn fn;
|
||||||
} test;
|
} Test;
|
||||||
|
|
||||||
static str tests[2] = {make_test(count_digits), make_test(fmt_decimal)};
|
static Test tests[3] = {
|
||||||
|
make_test(count_digits),
|
||||||
|
make_test(fmt_decimal),
|
||||||
|
{ { 0, NULL }, NULL }
|
||||||
|
};
|
||||||
|
|
||||||
void _start(void) {
|
void _start(void) {
|
||||||
u8 buf[BUF_SIZE];
|
u8 buf[BUF_SIZE];
|
||||||
|
@ -33,11 +38,18 @@ void _start(void) {
|
||||||
for(;;); // TODO: add abort function
|
for(;;); // TODO: add abort function
|
||||||
}
|
}
|
||||||
uint nread = (uint)nread0;
|
uint nread = (uint)nread0;
|
||||||
|
if (nread > 0 && buf[nread - 1] == '\n') {
|
||||||
|
nread--; // ignore trailing newline
|
||||||
|
}
|
||||||
|
|
||||||
for(uint i = 0; i < sizeof(tests); i++) {
|
Test t;
|
||||||
const str s = tests[i];
|
uint i;
|
||||||
if (streq(buf, nread, s.data, s.len)) {
|
for(i = 0, t = tests[i]; t.name.data != NULL; i++, t = tests[i]) {
|
||||||
|
if (streq(buf, nread, t.name.data, t.name.len)) {
|
||||||
|
t.fn();
|
||||||
|
exit(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
exit(2);
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
# Provide program starting address to linker
|
# Provide program starting address to linker
|
||||||
.global read
|
.global read
|
||||||
.global streq
|
.global streq
|
||||||
|
.global exit
|
||||||
|
|
||||||
# .extern fmt_decimal
|
# .extern fmt_decimal
|
||||||
|
|
||||||
|
@ -48,7 +49,6 @@ _start2:
|
||||||
# a1: number of bytes to read
|
# a1: number of bytes to read
|
||||||
# return:
|
# return:
|
||||||
# a0: count of bytes read, or error if < 0
|
# a0: count of bytes read, or error if < 0
|
||||||
|
|
||||||
read:
|
read:
|
||||||
li t0, SYSREAD # "read" syscall
|
li t0, SYSREAD # "read" syscall
|
||||||
mv a2, a1 # bytes to read
|
mv a2, a1 # bytes to read
|
||||||
|
@ -58,6 +58,16 @@ read:
|
||||||
ret
|
ret
|
||||||
|
|
||||||
|
|
||||||
|
# Exit with status
|
||||||
|
# arguments:
|
||||||
|
# a0: exit status
|
||||||
|
# return:
|
||||||
|
# none
|
||||||
|
exit:
|
||||||
|
li t0, SYSEXIT # "exit" syscall
|
||||||
|
ecall # invoke syscall to terminate the program
|
||||||
|
|
||||||
|
|
||||||
# Determine if two strings are equal
|
# Determine if two strings are equal
|
||||||
# arguments:
|
# arguments:
|
||||||
# a0: address of first string
|
# a0: address of first string
|
||||||
|
@ -67,7 +77,7 @@ read:
|
||||||
# return:
|
# return:
|
||||||
# a0: 1 if equal, 0 otherwise
|
# a0: 1 if equal, 0 otherwise
|
||||||
streq:
|
streq:
|
||||||
bne a1, a2, 2f # If the lengths are not the same then the strings are different
|
bne a1, a3, 2f # If the lengths are not the same then the strings are different
|
||||||
1:
|
1:
|
||||||
beqz a1, 3f # If the remaining length is zero, string are the same
|
beqz a1, 3f # If the remaining length is zero, string are the same
|
||||||
lbu a4, 0(a0) # load byte from string 1
|
lbu a4, 0(a0) # load byte from string 1
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
test_count_digits() {
|
test_count_digits() {
|
||||||
result=$("${QEMU}" -B 0x80000000 -s 2k tests/fmt_count_digits.elf)
|
result=$(echo "count_digits" | "${QEMU}" -B 0x80000000 -s 2k tests/harness.elf)
|
||||||
expected=$(cat << END
|
expected=$(cat << END
|
||||||
00000001
|
00000001
|
||||||
00000001
|
00000001
|
||||||
|
@ -21,7 +21,7 @@ END
|
||||||
}
|
}
|
||||||
|
|
||||||
test_fmt_decimal() {
|
test_fmt_decimal() {
|
||||||
result=$("${QEMU}" -B 0x80000000 -s 2k tests/fmt_decimal.elf)
|
result=$(echo "fmt_decimal" | "${QEMU}" -B 0x80000000 -s 2k tests/harness.elf)
|
||||||
expected=$(cat << END
|
expected=$(cat << END
|
||||||
0
|
0
|
||||||
1
|
1
|
||||||
|
|
Loading…
Reference in a new issue