Skip to content

Commit

Permalink
minitests: Add input DELAYF minitest
Browse files Browse the repository at this point in the history
Signed-off-by: David Shah <dave@ds0.me>
  • Loading branch information
gatecat committed Nov 18, 2019
1 parent dc10b8a commit 5d1cfae
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions minitests/iologic/idelay.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module idelay(input D, MOVE, LOADN, DIR, output Q, CFLAG);
wire dly_out;
DELAYF dly_f (.A(D), .MOVE(MOVE), .LOADN(LOADN), .DIRECTION(DIR), .Z(dly_out), .CFLAG(CFLAG));
assign Q = ~dly_out;
endmodule

0 comments on commit 5d1cfae

Please sign in to comment.