yosys/tests/asicworld/code_verilog_tutorial_escap...

15 lines
259 B
Coq
Raw Normal View History

2013-01-05 04:13:26 -06:00
// There must be white space after the
// string which uses escape character
module \1dff (
q, // Q output
\q~ , // Q_out output
d, // D input
cl$k, // CLOCK input
\reset* // Reset input
);
input d, cl$k, \reset* ;
output q, \q~ ;
endmodule