From 9649b1497c1379ab7dd2981d906f1612cb7cc102 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 16 Oct 2014 09:37:43 +0200 Subject: [PATCH] uart2wishbone: fix missing payload.d --- miscope/uart2wishbone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miscope/uart2wishbone.py b/miscope/uart2wishbone.py index f2c579be2..9f61693dc 100644 --- a/miscope/uart2wishbone.py +++ b/miscope/uart2wishbone.py @@ -189,7 +189,7 @@ class UART2Wishbone(Module, AutoCSR): ) ), uart.tx.sink.stb.eq(1), - chooser(data, word_cnt.value, uart.tx.sink.d, n=4, reverse=True) + chooser(data, word_cnt.value, uart.tx.sink.payload.d, n=4, reverse=True) ) ###