Getting started
1 Step one
module top_module( output one );
// Insert your code here
assign one = 1'b1;
endmodule
2 Zero
module top_module(
output zero
);// Module body starts after semicolon
assign zero = 0;
endmodule
标签:HDLBits,started,top,Getting,module,zero,endmodule
From: https://www.cnblogs.com/hubuguilai/p/16592711.html