summaryrefslogtreecommitdiff
path: root/tests/asicworld/code_verilog_tutorial_escape_id.v
blob: 6c33da1744628a72ae82c34c063480260e0ac960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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