diff options
author | Pavel V. Shatov (Meister) <meisterpaul1@yandex.ru> | 2017-07-10 15:31:25 +0300 |
---|---|---|
committer | Pavel V. Shatov (Meister) <meisterpaul1@yandex.ru> | 2017-07-10 15:31:25 +0300 |
commit | 71b75290bf2ade9a4022bad93dc80bfb77f87f40 (patch) | |
tree | ebd329a15278f6959053496f158c9f81f7b1c1da /src/rtl/pe | |
parent | 0da71205b28d07cc832732b28e8893c46fbf6cad (diff) |
* made separate file for low-level settings
* turned crazy triple multiplier array into one array with input mux
Diffstat (limited to 'src/rtl/pe')
-rw-r--r-- | src/rtl/pe/modexpa7_adder32.v | 2 | ||||
-rw-r--r-- | src/rtl/pe/modexpa7_primitive_switch.v (renamed from src/rtl/pe/modexpa7_lowlevel_settings.v) | 1 | ||||
-rw-r--r-- | src/rtl/pe/modexpa7_subtractor32.v | 2 | ||||
-rw-r--r-- | src/rtl/pe/modexpa7_systolic_pe.v | 2 |
4 files changed, 4 insertions, 3 deletions
diff --git a/src/rtl/pe/modexpa7_adder32.v b/src/rtl/pe/modexpa7_adder32.v index ad296b1..04f8a18 100644 --- a/src/rtl/pe/modexpa7_adder32.v +++ b/src/rtl/pe/modexpa7_adder32.v @@ -51,7 +51,7 @@ module modexpa7_adder32 // // Include Primitive Selector // - `include "modexpa7_lowlevel_settings.v" + `include "modexpa7_primitive_switch.v" // diff --git a/src/rtl/pe/modexpa7_lowlevel_settings.v b/src/rtl/pe/modexpa7_primitive_switch.v index 93f5f34..d38069b 100644 --- a/src/rtl/pe/modexpa7_lowlevel_settings.v +++ b/src/rtl/pe/modexpa7_primitive_switch.v @@ -12,4 +12,5 @@ `define SUBTRACTOR32_PRIMITIVE subtractor32_generic
`define SYSTOLIC_PE_PRIMITIVE systolic_pe_generic
+
`endif
diff --git a/src/rtl/pe/modexpa7_subtractor32.v b/src/rtl/pe/modexpa7_subtractor32.v index 75b9c13..a43d670 100644 --- a/src/rtl/pe/modexpa7_subtractor32.v +++ b/src/rtl/pe/modexpa7_subtractor32.v @@ -51,7 +51,7 @@ module modexpa7_subtractor32 // // Include Primitive Selector // - `include "modexpa7_lowlevel_settings.v" + `include "modexpa7_primitive_switch.v" // diff --git a/src/rtl/pe/modexpa7_systolic_pe.v b/src/rtl/pe/modexpa7_systolic_pe.v index 22e6874..b284134 100644 --- a/src/rtl/pe/modexpa7_systolic_pe.v +++ b/src/rtl/pe/modexpa7_systolic_pe.v @@ -51,7 +51,7 @@ module modexpa7_systolic_pe // // Include Primitive Selector // - `include "modexpa7_lowlevel_settings.v" + `include "modexpa7_primitive_switch.v" // |