yosys/tests/asicworld/code_verilog_tutorial_which...

13 lines
154 B
Verilog

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