summaryrefslogtreecommitdiff
path: root/chip8.c
diff options
context:
space:
mode:
authorDaniel Jones <admin@danieljon.es>2020-08-22 21:59:25 +0930
committerDaniel Jones <admin@danieljon.es>2020-08-22 21:59:25 +0930
commitf23b667da411baa8de95032bde97025fc427ad94 (patch)
tree60980fd676d39d7295261524f8a1ec5d96143a36 /chip8.c
parent9fa7c26b174b79fe66a3bcb0b6b69586044480c6 (diff)
downloadchip8-f23b667da411baa8de95032bde97025fc427ad94.tar.gz
chip8-f23b667da411baa8de95032bde97025fc427ad94.zip
added command line options for speed and video scale
./program speed scale rom
Diffstat (limited to 'chip8.c')
-rw-r--r--chip8.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/chip8.c b/chip8.c
index f64a207..1e7a857 100644
--- a/chip8.c
+++ b/chip8.c
@@ -94,15 +94,6 @@ chip8_init()
{
memory[0x0 + i] = chip8_fontset[i];
}
-
- /*
- uint8_t sinv[] = {0xBA, 0x7C, 0xD6, 0xFE, 0x54, 0xAA};
- // temp
- for (uint8_t i = 0; i <= FONT_WIDTH; i++)
- {
- memory[PROGRAM_START+i] = sinv[i];
- }
- */
}
void