run formatter

This commit is contained in:
Nicholas Orlowsky 2024-01-31 21:04:52 -06:00
parent e679a3ce68
commit f715709942
9 changed files with 550 additions and 469 deletions

20
gpu.sv
View file

@ -1,15 +1,15 @@
module gpu (
input wire [31:0] vram [0:2047]
);
input wire [31:0] 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 init_screen();
import "DPI-C" function void draw_screen(logic [31:0] vram[0:2047]);
initial begin
init_screen();
end
initial begin
init_screen();
end
always_comb begin
draw_screen(vram);
end
always_comb begin
draw_screen(vram);
end
endmodule