phy/trionrgmii: Fix source.last.
This commit is contained in:
parent
4dd95ea2a2
commit
1bbd90ae4d
|
@ -105,9 +105,9 @@ class LiteEthPHYRGMIIRX(Module):
|
|||
self.comb += last.eq(~pads.rx_ctl & rx_ctl_d)
|
||||
self.sync += [
|
||||
source.valid.eq(rx_ctl_d),
|
||||
source.data.eq(rx_data),
|
||||
source.last.eq(last),
|
||||
source.data.eq(rx_data)
|
||||
]
|
||||
self.comb += source.last.eq(last)
|
||||
|
||||
class LiteEthPHYRGMIICRG(Module, AutoCSR):
|
||||
def __init__(self, platform, clock_pads, with_hw_init_reset, hw_reset_cycles=256):
|
||||
|
|
Loading…
Reference in New Issue