From: Luke Kenneth Casson Leighton Date: Sat, 16 Apr 2022 16:27:52 +0000 (+0100) Subject: get runsimsoc2.sh running again, test asynchronous wb bridge, X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d2d14b59005cb3f80a64ffe8cfb0ca726fb6869d;p=ls2.git get runsimsoc2.sh running again, test asynchronous wb bridge, found bug in WBAsyncBridge (in soc) where ack signal was not wired up. v simple --- 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 \