From 2920c5c49934ed2a7bf77b50e613410b5b8c8a3d Mon Sep 17 00:00:00 2001 From: Jean THOMAS Date: Mon, 29 Jun 2020 14:25:19 +0200 Subject: [PATCH] Set UART RX to 1'b1 --- gram/simulation/simsoctb.v | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gram/simulation/simsoctb.v b/gram/simulation/simsoctb.v index 84d7c86..f17737c 100644 --- a/gram/simulation/simsoctb.v +++ b/gram/simulation/simsoctb.v @@ -82,6 +82,8 @@ module simsoctb; .uart_0__tx__io(uart_tx) ); + assign uart_rx = 1'b1; + initial begin $dumpfile("simsoc.fst"); @@ -101,6 +103,10 @@ module simsoctb; $dumpvars(0, uart_tx); $dumpvars(0, simsoctop); - #10000 $finish; + // Wait for power-on reset + //#700000; // 700us + #70000; + + $finish; end endmodule -- 2.30.2