diff --git a/src/main.odin b/src/main.odin index 16f156e..880e8e9 100644 --- a/src/main.odin +++ b/src/main.odin @@ -25,7 +25,8 @@ main :: proc() { // load rom, hardcoded for now, will eventually be cli or gui // err := chip.load_rom(&system, "./test_roms/2-ibm-logo.ch8") // err := chip.load_rom(&system, "./test_roms/1-chip8-logo.ch8") - err := chip.load_rom(&system, "./test_roms/4-flags.ch8") + // err := chip.load_rom(&system, "./test_roms/4-flags.ch8") + err := chip.load_rom(&system, "./test_roms/6-keypad.ch8") if err != nil { panic("failed to load rom!") } diff --git a/test_roms/6-keypad.ch8 b/test_roms/6-keypad.ch8 new file mode 100644 index 0000000..4d1ecdc Binary files /dev/null and b/test_roms/6-keypad.ch8 differ