1
0
forked from tanchou/Verilog

Training exercise

This commit is contained in:
Gamenight77
2025-03-22 18:44:25 +01:00
parent e651a94dbe
commit 7c09418828
5 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
module top_module (
input wire [2:0] vec,
output wire [2:0] outv,
output wire o2,
output wire o1,
output wire o0 );
assign outv = vec;
assign o0 = vec[0];
assign o1 = vec[1];
assign o2 = vec[2];
endmodule