diff options
author | Maciej Kurc <mkurc@antmicro.com> | 2019-06-03 09:12:51 +0200 |
---|---|---|
committer | Maciej Kurc <mkurc@antmicro.com> | 2019-06-03 09:25:20 +0200 |
commit | 5739cf52650ccb3627868d9c9d7e02888efad12b (patch) | |
tree | cb3e467303121061eeff62393a3c45bf76c03860 /tests/simple/attrib02_port_decl.v | |
parent | a6cadf6318f4eff6197d6c6f0e052c2417689f38 (diff) | |
download | yosys-5739cf52650ccb3627868d9c9d7e02888efad12b.tar.gz yosys-5739cf52650ccb3627868d9c9d7e02888efad12b.tar.bz2 yosys-5739cf52650ccb3627868d9c9d7e02888efad12b.zip |
Added tests for attributes
Signed-off-by: Maciej Kurc <mkurc@antmicro.com>
Diffstat (limited to 'tests/simple/attrib02_port_decl.v')
-rw-r--r-- | tests/simple/attrib02_port_decl.v | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/simple/attrib02_port_decl.v b/tests/simple/attrib02_port_decl.v new file mode 100644 index 000000000..3505e7265 --- /dev/null +++ b/tests/simple/attrib02_port_decl.v @@ -0,0 +1,25 @@ +module bar(clk, rst, inp, out); + (* this_is_clock = 1 *) + input wire clk; + (* this_is_reset = 1 *) + input wire rst; + input wire inp; + (* an_output_register = 1*) + output reg out; + + always @(posedge clk) + if (rst) out <= 1'd0; + else out <= ~inp; + +endmodule + +module foo(clk, rst, inp, out); + (* this_is_the_master_clock *) + input wire clk; + input wire rst; + input wire inp; + output wire out; + + bar bar_instance (clk, rst, inp, out); +endmodule + |