From 0fa0e22e89a697730b1876de78a0e5d38d059b70 Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Tue, 18 Aug 2020 15:46:27 +0930 Subject: implemented keypad hex keypad is mapped to keys 1234,qwer,asdf,zxcv --- chip8.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'chip8.c') diff --git a/chip8.c b/chip8.c index 3a2f43d..b6d52eb 100644 --- a/chip8.c +++ b/chip8.c @@ -120,3 +120,9 @@ chip8_draw_sprite(int startx, int starty, uint16_t mem, uint8_t size) starty++; } } + +void +chip8_cycle() +{ + +} -- cgit v1.2.3