Skip to content
Snippets Groups Projects

modified process_engine.sv

Closed Le Thien Nam Nguyen (nln157) requested to merge nam into main
2 files
+ 13
16
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -9,7 +9,6 @@ module mult16bvia8bit (
///////////////////////////// Instantiate your multiplier here ///////////////////////////////////////
//exact_mult mult (
//our_mult mult (
approx_mult mult (
.i_a(inA[0]),
.i_b(inB[0]),
@@ -21,9 +20,7 @@ module mult16bvia8bit (
generate
;
for (i = 1; i < 4; i = i + 1) begin : base
//exact_mult mult (
//our_mult mult (
approx_mult mult (
exact_mult mult (
.i_a(inA[i]),
.i_b(inB[i]),
.o_z(ouP[i])
Loading