yosys/tests/asicworld/code_verilog_tutorial_which...

13 lines
154 B
Coq
Raw Normal View History

2013-01-05 04:13:26 -06:00
module which_clock (x,y,q,d);
input x,y,d;
output q;
reg q;
always @ (posedge x or posedge y)
if (x)
q <= 1'b0;
else
q <= d;
endmodule