soc/integration/add_ethernet: Expose full_memory_we parameter.
This commit is contained in:
parent
d3161ad74c
commit
f67b39739e
|
@ -1842,6 +1842,7 @@ class LiteXSoC(SoC):
|
|||
data_width = 8,
|
||||
nrxslots = 2, rxslots_read_only = True,
|
||||
ntxslots = 2, txslots_write_only = False,
|
||||
full_memory_we = False,
|
||||
with_timestamp = False,
|
||||
with_timing_constraints = True,
|
||||
local_ip = None,
|
||||
|
@ -1864,6 +1865,7 @@ class LiteXSoC(SoC):
|
|||
nrxslots = nrxslots, rxslots_read_only = rxslots_read_only,
|
||||
ntxslots = ntxslots, txslots_write_only = txslots_write_only,
|
||||
timestamp = None if not with_timestamp else self.timer0.uptime_cycles,
|
||||
full_memory_we = full_memory_we,
|
||||
with_preamble_crc = not software_debug,
|
||||
with_sys_datapath = with_sys_datapath)
|
||||
if not with_sys_datapath:
|
||||
|
|
Loading…
Reference in New Issue