Skip to content

Commit b492aad

Browse files
committedApr 10, 2015
targets/kc705: enable Ethernet core
1 parent 88e0aae commit b492aad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

Diff for: ‎soc/targets/artiq_kc705.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from misoclib.com import gpio
77
from misoclib.soc import mem_decoder
8-
from targets.kc705 import BaseSoC
8+
from targets.kc705 import MiniSoC
99

1010
from artiq.gateware import amp, rtio, ad9858, nist_qc1
1111

@@ -28,15 +28,15 @@ def __init__(self, platform, rtio_internal_clk):
2828
o_O=self.cd_rtio.clk)
2929

3030

31-
class _Peripherals(BaseSoC):
31+
class _Peripherals(MiniSoC):
3232
csr_map = {
3333
"rtio": None, # mapped on Wishbone instead
3434
"rtiocrg": 13
3535
}
36-
csr_map.update(BaseSoC.csr_map)
36+
csr_map.update(MiniSoC.csr_map)
3737

3838
def __init__(self, platform, cpu_type="or1k", **kwargs):
39-
BaseSoC.__init__(self, platform,
39+
MiniSoC.__init__(self, platform,
4040
cpu_type=cpu_type, **kwargs)
4141
platform.add_extension(nist_qc1.fmc_adapter_io)
4242

0 commit comments

Comments
 (0)
Please sign in to comment.