diff options
Diffstat (limited to 'tests/sim/dlatch.v')
-rw-r--r-- | tests/sim/dlatch.v | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/sim/dlatch.v b/tests/sim/dlatch.v new file mode 100644 index 000000000..315b43216 --- /dev/null +++ b/tests/sim/dlatch.v @@ -0,0 +1,6 @@ +module dlatch( input d, en, output reg q ); + always @* begin + if ( en ) + q = d; + end +endmodule |