This commit is contained in:
Imants Pulkstenis
2019-10-12 11:36:30 +03:00
parent e9d12a7eb4
commit 2370426916
8 changed files with 374 additions and 29 deletions
+6 -9
View File
@@ -16,21 +16,18 @@
//top module
`include "top.v"
module top_vga_mem_tb#( parameter
WAIT = 1,
WAIT_WIDTH = 2,
SPEED = 2,
//memory parameters
ADDR_WIDTH = 17, //19, //
DATA_WIDTH = 12,
DEPTH = 307_200//76_800, //
)();
module top_tb();
reg clk = 1'b0;
// 50% duty cycle clock
always #0.5 clk <= ~clk;
top UUT(
.clk(clk)
);
initial begin
#030_000;