diff options
| author | Daniel Jones <admin@danieljon.es> | 2020-08-19 01:51:16 +0930 |
|---|---|---|
| committer | Daniel Jones <admin@danieljon.es> | 2020-08-19 01:51:16 +0930 |
| commit | d64874fc4e50f22ecb5aa669abfe5d5a7931255a (patch) | |
| tree | 9f181229771cb20c76a7307cceee2b412e20d8ea /chip8.h | |
| parent | a9eefc680b3c385747a11f9110b35bfed58d6246 (diff) | |
| download | chip8-d64874fc4e50f22ecb5aa669abfe5d5a7931255a.tar.gz chip8-d64874fc4e50f22ecb5aa669abfe5d5a7931255a.zip | |
begin implementing instructions
screen clearing and loading bytes into registers implemented currently
Diffstat (limited to 'chip8.h')
| -rw-r--r-- | chip8.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 |
