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