1
0
Fork 0

cxp: cleanup

This commit is contained in:
morgan 2024-09-02 15:03:30 +08:00
parent 305e2fa177
commit 91a73c225d
1 changed files with 2 additions and 3 deletions

View File

@ -140,7 +140,7 @@ class CXP_TX_Core(Module, AutoCSR):
self.inc = CSR()
self.dout_pak = CSRStatus(8)
self.kout_pak = CSRStatus()
self.dout_valid =CSRStatus()
self.dout_valid = CSRStatus()
self.sync += [
# output
@ -151,8 +151,7 @@ class CXP_TX_Core(Module, AutoCSR):
]
self.specials += [
# # pmod 0-7 pin
# pmod 0-7 pin
Instance("OBUF", i_I=buf_in.sink.stb, o_O=pmod_pads[0]),
Instance("OBUF", i_I=buf_in.sink.ack, o_O=pmod_pads[1]),
Instance("OBUF", i_I=buf_in.source.stb, o_O=pmod_pads[2]),