cpu/naxriscv: Minor cleanups.
This commit is contained in:
parent
0a738002e0
commit
63356b8187
|
@ -4,10 +4,10 @@
|
||||||
# Copyright (c) 2020-2022 Florent Kermarrec <florent@enjoy-digital.fr>
|
# Copyright (c) 2020-2022 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||||
# Copyright (c) 2020-2022 Dolu1990 <charles.papon.90@gmail.com>
|
# Copyright (c) 2020-2022 Dolu1990 <charles.papon.90@gmail.com>
|
||||||
# SPDX-License-Identifier: BSD-2-Clause
|
# SPDX-License-Identifier: BSD-2-Clause
|
||||||
import hashlib
|
|
||||||
import os
|
import os
|
||||||
|
import hashlib
|
||||||
import subprocess
|
import subprocess
|
||||||
from os import path
|
|
||||||
|
|
||||||
from migen import *
|
from migen import *
|
||||||
|
|
||||||
|
@ -258,7 +258,7 @@ class NaxRiscv(CPU):
|
||||||
def add_sources(self, platform):
|
def add_sources(self, platform):
|
||||||
vdir = get_data_mod("cpu", "naxriscv").data_location
|
vdir = get_data_mod("cpu", "naxriscv").data_location
|
||||||
print(f"NaxRiscv netlist : {self.netlist_name}")
|
print(f"NaxRiscv netlist : {self.netlist_name}")
|
||||||
if not path.exists(os.path.join(vdir, self.netlist_name + ".v")):
|
if not os.path.exists(os.path.join(vdir, self.netlist_name + ".v")):
|
||||||
self.generate_netlist(self.reset_address)
|
self.generate_netlist(self.reset_address)
|
||||||
|
|
||||||
# Add RAM.
|
# Add RAM.
|
||||||
|
@ -472,5 +472,5 @@ class NaxRiscv(CPU):
|
||||||
# Do verilog instance.
|
# Do verilog instance.
|
||||||
self.specials += Instance(self.netlist_name, **self.cpu_params)
|
self.specials += Instance(self.netlist_name, **self.cpu_params)
|
||||||
|
|
||||||
# Add verilog sources
|
# Add verilog sources.
|
||||||
self.add_sources(self.platform)
|
self.add_sources(self.platform)
|
||||||
|
|
Loading…
Reference in New Issue