chip8 draws in st7920 format now

This commit is contained in:
Nicholas Orlowsky 2024-04-06 21:36:24 -05:00
parent 9804af7796
commit fdd6553f11
Signed by: nickorlow
GPG key ID: 838827D8C4611687
4 changed files with 47 additions and 15 deletions

View file

@ -3,7 +3,7 @@ module chip8 (
input wire rst_in
);
bit vram[0:2047];
bit [7:0] vram[0:1023];
bit [7:0] memory[0:4095];
bit keyboard[15:0];