updated tests to print out some debug info

This commit is contained in:
shockrah 2019-12-01 02:31:37 -08:00
parent 58da5af56c
commit cfce9256c2

View File

@ -22,5 +22,6 @@ void test_dispatcher(void) {
void test_read(void) {
char buf[5];
u32 bread = read(buf, 5);
printhex(bread);
printf("Bytes read: "); printhex(bread);
printf("String read: "); printf(buf);
}