From d64874fc4e50f22ecb5aa669abfe5d5a7931255a Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Wed, 19 Aug 2020 01:51:16 +0930 Subject: begin implementing instructions screen clearing and loading bytes into registers implemented currently --- chip8.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'chip8.h') diff --git a/chip8.h b/chip8.h index 6779567..6d59ea8 100644 --- a/chip8.h +++ b/chip8.h @@ -25,5 +25,7 @@ int load_rom(); void chip8_init(); void chip8_draw_sprite(int startx, int starty, uint16_t mem, uint8_t size); void chip8_cycle(); +void chip8_beep(); +void unknown_opcode(uint16_t bad_opcode); #endif -- cgit v1.2.3