use 1 bit map for screen

This commit is contained in:
Nicholas Orlowsky 2024-04-06 16:38:23 -05:00
parent f949c2515b
commit 9804af7796
Signed by: nickorlow
GPG key ID: 838827D8C4611687
9 changed files with 51 additions and 43 deletions

4
gpu.sv
View file

@ -1,9 +1,9 @@
module gpu (
input wire [31:0] vram[0:2047]
input wire vram[0:2047]
);
import "DPI-C" function void init_screen();
import "DPI-C" function void draw_screen(logic [31:0] vram[0:2047]);
import "DPI-C" function void draw_screen(logic vram[0:2047]);
initial begin
init_screen();