diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2023-12-21 18:39:18 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2023-12-21 18:39:32 +0100 |
| commit | a44acfe610c0792fb1bcab2dd081a1344286af05 (patch) | |
| tree | 85de88fef835ba4a957eac433865bcd1239db1d4 /test | |
| parent | 3087897c5aa716579b1255ac8c65dc1438515822 (diff) | |
| download | aoc2023.nes-a44acfe610c0792fb1bcab2dd081a1344286af05.tar.gz aoc2023.nes-a44acfe610c0792fb1bcab2dd081a1344286af05.zip | |
Finished the second part of day 4
In order to do so I had to come up with a custom list library because
otherwise keeping up with the enunciate and the memory management logic
was a bit chaotic.
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'test')
| -rw-r--r-- | test/4.lua | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2,7 +2,10 @@ utils = require "utils" utils.StartRun("4") -utils.MemTest("@test", {{0x07, "92"}, {0x08, "52"}}) +utils.MemTest("@test", { + {0x07, "92"}, {0x08, "52"}, -- Part 1 + {0x09, "84"}, {0x0A, "A4"}, {0x0B, "6D"}, {0x0C, "00"} -- Part 2 +}) -- The test appears to be done in a few frames. Let's run this several times -- just in case. |
