mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 01:18:10 +02:00
6 lines
116 B
Verilog
6 lines
116 B
Verilog
module top;
|
|
parameter W = 8;
|
|
reg [W - 1:0] x = 8'b1101_0100;
|
|
wire [W - 1:0] y = 8'b0010_1011;
|
|
endmodule
|