diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-02-23 19:37:00 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-02-23 19:37:00 +0100 |
commit | 0d636964b81ed5db4a7031a24c4b04e3bc879ad5 (patch) | |
tree | 30ec1719eadc3d0a991e0b94e54a3c1a623c66d9 /examples/smtbmc/demo2.v | |
parent | 2521ed305e9d48929c9ede93b8cb0069739408f5 (diff) | |
parent | b13e6bd375dc19fc2d6a3e67cdc6c045da732200 (diff) | |
download | yosys-0d636964b81ed5db4a7031a24c4b04e3bc879ad5.tar.gz yosys-0d636964b81ed5db4a7031a24c4b04e3bc879ad5.tar.bz2 yosys-0d636964b81ed5db4a7031a24c4b04e3bc879ad5.zip |
Merge branch 'forall'
Diffstat (limited to 'examples/smtbmc/demo2.v')
-rw-r--r-- | examples/smtbmc/demo2.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/smtbmc/demo2.v b/examples/smtbmc/demo2.v index 34745e898..0cf529a42 100644 --- a/examples/smtbmc/demo2.v +++ b/examples/smtbmc/demo2.v @@ -9,7 +9,7 @@ module demo2(input clk, input [4:0] addr, output reg [31:0] data); reg [31:0] mem [0:31]; - always @(posedge clk) + always @(negedge clk) data <= mem[addr]; reg [31:0] used_addr = 0; |