mirror of https://github.com/YosysHQ/yosys.git
10 lines
134 B
Coq
10 lines
134 B
Coq
|
`define parvez ahmad
|
||
|
`define WIRE wire
|
||
|
`define TEN 10
|
||
|
|
||
|
module `parvez();
|
||
|
parameter param = `TEN;
|
||
|
`WIRE w;
|
||
|
assign w = `TEN;
|
||
|
endmodule
|