bootloader test dump

This commit is contained in:
2024-11-23 16:56:29 +05:30
parent 5527f9e8b2
commit e2fa3ee864
11 changed files with 538 additions and 183 deletions

View File

@@ -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