From cfce9256c2d034b5ed1dbe97f860787e765dde49 Mon Sep 17 00:00:00 2001 From: shockrah Date: Sun, 1 Dec 2019 02:31:37 -0800 Subject: [PATCH] updated tests to print out some debug info --- tests.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests.c b/tests.c index dec9aad..14ed1b6 100644 --- a/tests.c +++ b/tests.c @@ -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); }