9 lines
100 B
Verilog
9 lines
100 B
Verilog
module test(a, b, c);
|
|
input b, c;
|
|
output reg a;
|
|
|
|
always @(b or c) begin
|
|
a = b;
|
|
a = c;
|
|
end
|
|
endmodule
|