From d2d14b59005cb3f80a64ffe8cfb0ca726fb6869d Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sat, 16 Apr 2022 17:27:52 +0100 Subject: [PATCH] get runsimsoc2.sh running again, test asynchronous wb bridge, found bug in WBAsyncBridge (in soc) where ack signal was not wired up. v simple --- lib/console.c | 2 +- runsimsoc2.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/console.c b/lib/console.c index 34bfc41..8d3d52c 100644 --- a/lib/console.c +++ b/lib/console.c @@ -155,7 +155,7 @@ int getchar(void) int putchar(int c) { - // return c; comment this in for icarus simulations (too slow otherwise) + // return c; // comment this in for icarus simulations (too slow otherwise) if (uart_is_std) { while(std_uart_tx_full()) /* Do Nothing */; diff --git a/runsimsoc2.sh b/runsimsoc2.sh index 66080cb..9fe6b95 100755 --- a/runsimsoc2.sh +++ b/runsimsoc2.sh @@ -26,6 +26,7 @@ iverilog -Wall -g2012 -s simsoctb -o simsoc \ ${LIB_DIR}/ODDRX2DQSB.v ${LIB_DIR}/IDDRX2DQA.v \ ${LIB_DIR}/UDFDL5E_UDP_X.v \ ${LIB_DIR}/OBZ.v \ + ${LIB_DIR}/DELAYG.v \ ${LIB_DIR}/OFS1P3DX.v \ ${LIB_DIR}/IFS1P3DX.v \ DDRDLLA.v \ -- 2.30.2