From: Miodrag Milanovic Date: Tue, 26 Jan 2021 08:09:43 +0000 (+0100) Subject: Fix syntax errors X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=605db98382156fa293e27cd987eea71fb549df0b;p=SymbiYosys.git Fix syntax errors --- diff --git a/sbysrc/demo3.sby b/sbysrc/demo3.sby index 2bb0679..c959d88 100644 --- a/sbysrc/demo3.sby +++ b/sbysrc/demo3.sby @@ -14,9 +14,9 @@ module top ( input clk, input [7:0] addr, input [7:0] wdata, - output [7:0] rdata, + output [7:0] rdata ); - const rand reg [7:0] test_addr; + rand const reg [7:0] test_addr; reg [7:0] test_data; reg test_valid = 0; @@ -42,7 +42,7 @@ module memory ( input clk, input [7:0] addr, input [7:0] wdata, - output [7:0] rdata, + output [7:0] rdata ); reg [7:0] mem [0:255];