[Open-graphics] video head 0 module template

Timothy Miller theosib at gmail.com
Thu Oct 5 22:19:54 EDT 2006


I had a quick glance.  Looks nice.  I suggest, instead of changing the
ddrff definition in the synthesizable part, add this code to your test
bench:

module FDDRRSE(Q, C0, C1, CE, D0, D1, R, S);
output Q;
reg Q;
input C0, C1, CE, D0, D1, R, S;
always @(posedge C0) Q <= D0;
always @(posedge C1) Q <= D1;
endmodule


More information about the Open-graphics mailing list