microwatt: Use Xilinx multiplier
Use the technology specific multiplier implementation when building for a Xilinx platform. This isn't understood by yosys so we can't use it when yosys is used for synthesis. Signed-off-by: Joel Stanley <joel@jms.id.au>
This commit is contained in:
parent
0503188661
commit
24ec49db2e
|
@ -187,8 +187,7 @@ class Microwatt(CPU):
|
|||
# Load/Store.
|
||||
"loadstore1.vhdl",
|
||||
|
||||
# Multiply/Divide.
|
||||
"multiply.vhdl",
|
||||
# Divide.
|
||||
"divider.vhdl",
|
||||
|
||||
# FPU.
|
||||
|
@ -207,6 +206,12 @@ class Microwatt(CPU):
|
|||
"core_debug.vhdl",
|
||||
"core.vhdl",
|
||||
]
|
||||
from litex.build.xilinx import XilinxPlatform
|
||||
if isinstance(platform, XilinxPlatform) and not use_ghdl_yosys_plugin:
|
||||
sources.append("xilinx-mult.vhdl")
|
||||
else:
|
||||
sources.append("multiply.vhdl")
|
||||
|
||||
sdir = get_data_mod("cpu", "microwatt").data_location
|
||||
cdir = os.path.dirname(__file__)
|
||||
# Convert VHDL to Verilog through GHDL/Yosys.
|
||||
|
|
Loading…
Reference in New Issue