Files
Toooba/src_SSITH_P3/Verilog_RTL_sim/ASSIGN1.v
rsnikhil a6a227ed66 Incorporated patches/additions from Joe Stoy after GFE debugging (w. amendment ...)
Amendment: RegUNInit.v updated, removing an extraneous RST line.
2020-03-13 16:38:54 -04:00

6 lines
83 B
Verilog

module ASSIGN1(IN, OUT);
output OUT;
input IN;
assign OUT = IN;
endmodule