From 63897b552fc0d0a2544a547318017485ed220c67 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 12 Dec 2023 20:03:06 +0100 Subject: Implemented day 3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Note that only part 1 has been implemented. The reasoning is on the file header. Moreover, we are not printing 24-bit results yet because that would entail modifying the somewhat terrifying vendor code on `vendor/bcd16.s`. Since this will be a recurring theme, I guess that I will have to come up with a solution sooner or later. Signed-off-by: Miquel Sabaté Solà --- test/utils.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test/utils.lua') diff --git a/test/utils.lua b/test/utils.lua index c5ecd94..2cd713a 100644 --- a/test/utils.lua +++ b/test/utils.lua @@ -48,10 +48,9 @@ function utils.MemTest(label, addresses) if expected == got then io.write("OK\n") else - io.write("\n-> Test '".. label .."': FAIL\n") + io.write("FAIL\n") io.write("Expected: ".. expected .. "\n") io.write("Got: ".. got .. "\n") - io.write("\n") end io.close(file) end) -- cgit v1.2.3