make better

This commit is contained in:
Nicholas Orlowsky 2024-04-07 23:39:15 -05:00
parent fdd6553f11
commit f2c0935b60
Signed by: nickorlow
GPG key ID: 838827D8C4611687
128 changed files with 39530 additions and 530 deletions

7
gpu.sv
View file

@ -1,5 +1,10 @@
module gpu (
input wire [7:0] vram[0:1023]
input wire sys_clk,
input wire sys_rst_n_ms,
input wire [7:0] vram [0:1023],
output logic lcd_clk, // This goes to the E pin
output logic lcd_data, // This goes to the R/W pin
output logic [5:0] led
);
import "DPI-C" function void init_screen();