mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
Improve naxriscv peripheral latency
This commit is contained in:
parent
8e7fd9bc1f
commit
622a35fd4e
1 changed files with 4 additions and 4 deletions
|
@ -123,8 +123,8 @@ class NaxRiscv(CPU):
|
|||
self.human_name = self.human_name
|
||||
self.reset = Signal()
|
||||
self.interrupt = Signal(32)
|
||||
self.ibus = ibus = axi.AXILiteInterface(address_width=32, data_width=64)
|
||||
self.dbus = dbus = axi.AXILiteInterface(address_width=32, data_width=64)
|
||||
self.ibus = ibus = axi.AXILiteInterface(address_width=32, data_width=32)
|
||||
self.dbus = dbus = axi.AXILiteInterface(address_width=32, data_width=32)
|
||||
|
||||
self.periph_buses = [ibus, dbus] # Peripheral buses (Connected to main SoC's bus).
|
||||
self.memory_buses = [] # Memory buses (Connected directly to LiteDRAM).
|
||||
|
@ -228,8 +228,8 @@ class NaxRiscv(CPU):
|
|||
ndir = os.path.join(vdir, "ext", "NaxRiscv")
|
||||
sdir = os.path.join(vdir, "ext", "SpinalHDL")
|
||||
|
||||
NaxRiscv.git_setup("NaxRiscv", ndir, "https://github.com/SpinalHDL/NaxRiscv.git" , "main", "cb2a598a")
|
||||
NaxRiscv.git_setup("SpinalHDL", sdir, "https://github.com/SpinalHDL/SpinalHDL.git", "dev" , "a130f7b7")
|
||||
NaxRiscv.git_setup("NaxRiscv", ndir, "https://github.com/SpinalHDL/NaxRiscv.git" , "main", "518d2713")
|
||||
NaxRiscv.git_setup("SpinalHDL", sdir, "https://github.com/SpinalHDL/SpinalHDL.git", "dev" , "56400992")
|
||||
|
||||
gen_args = []
|
||||
gen_args.append(f"--netlist-name={NaxRiscv.netlist_name}")
|
||||
|
|
Loading…
Reference in a new issue