mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-27 02:45:52 +00:00
initial import
This commit is contained in:
commit
7764d0ba1d
481 changed files with 54634 additions and 0 deletions
10
tests/hana/test_parser_constructs_param_basic0_test.v
Normal file
10
tests/hana/test_parser_constructs_param_basic0_test.v
Normal file
|
@ -0,0 +1,10 @@
|
|||
module test #( parameter v2kparam = 5)
|
||||
(in, out, io, vin, vout, vio);
|
||||
input in;
|
||||
output out;
|
||||
inout io;
|
||||
input [3:0] vin;
|
||||
output [v2kparam:0] vout;
|
||||
inout [0:3] vio;
|
||||
parameter myparam = 10;
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue