Skip to content

Commit dd44a7d

Browse files
committed
RFC #16: fix field access strobe example.
1 parent 11a90a0 commit dd44a7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

text/0016-soc-csr-regs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ class UARTPeripheral(Elaboratable):
246246
self._rx_status.f.err.r_data.eq(rx_fifo.r_data[-1]),
247247

248248
self._rx_data.f.data.r_data.eq(rx_fifo.r_data[:8]),
249-
rx_fifo.r_en.eq(self._rx_data.f.data.port.r_stb),
249+
rx_fifo.r_en.eq(self._rx_data.f.data.r_stb),
250250
]
251251

252252
...

0 commit comments

Comments
 (0)