bootloader test dump
This commit is contained in:
@@ -14,7 +14,7 @@ module Mux8Way16(
|
||||
input [15:0] f,
|
||||
input [15:0] g,
|
||||
input [15:0] h,
|
||||
input [2:0] sel,
|
||||
input [2:0] sel,
|
||||
output [15:0] out
|
||||
);
|
||||
|
||||
@@ -35,4 +35,17 @@ module Mux8Way16(
|
||||
Mux16 MUX16F(outef[15:0], outgh[15:0], sel[1], outefgh[15:0]);
|
||||
Mux16 MUX16(outabcd[15:0], outefgh[15:0], sel[2], out[15:0]);
|
||||
|
||||
// always @(*) begin
|
||||
// case (sel)
|
||||
// 0 : out = a;
|
||||
// 1 : out = b;
|
||||
// 2 : out = c;
|
||||
// 3 : out = d;
|
||||
// 4 : out = e;
|
||||
// 5 : out = f;
|
||||
// 6 : out = g;
|
||||
// 7 : out = h;
|
||||
// endcase
|
||||
// end
|
||||
|
||||
endmodule
|
||||
|
Reference in New Issue
Block a user