mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-29 03:45:52 +00:00
quicklogic: allow fractured mode on canonical dspv1 modules
This commit is contained in:
parent
62885f1de3
commit
fcdd013c57
2 changed files with 6 additions and 4 deletions
|
@ -34,7 +34,8 @@ module dsp_t1_20x18x64_cfg_ports (
|
|||
input [5:0] shift_right_i,
|
||||
input round_i,
|
||||
input subtract_i,
|
||||
input register_inputs_i
|
||||
input register_inputs_i,
|
||||
input f_mode_i
|
||||
);
|
||||
|
||||
parameter [19:0] COEFF_0 = 20'd0;
|
||||
|
@ -59,7 +60,7 @@ module dsp_t1_20x18x64_cfg_ports (
|
|||
.unsigned_a (unsigned_a_i),
|
||||
.unsigned_b (unsigned_b_i),
|
||||
|
||||
.f_mode (1'b0), // No fracturation
|
||||
.f_mode (f_mode_i), // No fracturation
|
||||
.output_select (output_select_i),
|
||||
.saturate_enable (saturate_enable_i),
|
||||
.shift_right (shift_right_i),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue