use 1 bit map for screen
This commit is contained in:
parent
f949c2515b
commit
9804af7796
9 changed files with 51 additions and 43 deletions
4
gpu.sv
4
gpu.sv
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue