From: Jean THOMAS Date: Mon, 29 Jun 2020 12:25:19 +0000 (+0200) Subject: Set UART RX to 1'b1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2920c5c49934ed2a7bf77b50e613410b5b8c8a3d;p=gram.git Set UART RX to 1'b1 --- 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