Open zilongwang123 opened 3 years ago
I have a test.v as: ''' module top ( input CLK, input RST, input add, output [7:0] led );
assign led = 8;
endmodule '''
I want to add a 'assign led = add + RST;' before endmodule, What's the easiest way to do this?
I have a test.v as: ''' module top ( input CLK, input RST, input add, output [7:0] led );
assign led = 8;
endmodule '''
I want to add a 'assign led = add + RST;' before endmodule, What's the easiest way to do this?