generated from saji/litex-overlay
wip: basic pixel generator + coordinator module
coordinator is a high level hub75 controller. It drives multiple panels by generating the x/y coordinates that would be displayed on each, then converting those into the BRAM format to be written quickly.
This commit is contained in:
parent
bd2fa51f2d
commit
9a4dfea4f0
7 changed files with 252 additions and 20 deletions
14
verilog/tb/coordinator_tb.sv
Normal file
14
verilog/tb/coordinator_tb.sv
Normal file
|
@ -0,0 +1,14 @@
|
|||
`timescale 1ns / 100ps // 1 ns time unit, 100 ps resolution
|
||||
|
||||
module coordinator_tb();
|
||||
reg clk = 0;
|
||||
coordinator dut(.clk(clk));
|
||||
always #8 clk = !clk;
|
||||
initial begin
|
||||
$dumpfile("coordinator.vcd");
|
||||
$dumpvars(0, coordinator_tb);
|
||||
repeat (10000) @(posedge clk);
|
||||
$finish;
|
||||
end
|
||||
endmodule
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue