aboutsummaryrefslogtreecommitdiffstats
path: root/tests/memories
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-05-01 23:47:16 +0200
committerGitHub <noreply@github.com>2019-05-01 23:47:16 +0200
commite8a157b47cfcd14d8c49b38802dc98ae03a76a07 (patch)
treeccd5e24eae2944a031781deb8f3b042285b67c5d /tests/memories
parent93b7fd77449ea385d12db71fd8205312441535d9 (diff)
parent38f5424f92389d6f4fdf020b214023b2b6efa71a (diff)
downloadyosys-e8a157b47cfcd14d8c49b38802dc98ae03a76a07.tar.gz
yosys-e8a157b47cfcd14d8c49b38802dc98ae03a76a07.tar.bz2
yosys-e8a157b47cfcd14d8c49b38802dc98ae03a76a07.zip
Merge pull request #977 from ucb-bar/fixfirrtlmem
Fix #938 - Crash occurs in case when use write_firrtl command
Diffstat (limited to 'tests/memories')
-rw-r--r--tests/memories/firrtl_938.v22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/memories/firrtl_938.v b/tests/memories/firrtl_938.v
new file mode 100644
index 000000000..af5efcd25
--- /dev/null
+++ b/tests/memories/firrtl_938.v
@@ -0,0 +1,22 @@
+module top
+(
+ input [7:0] data_a,
+ input [6:1] addr_a,
+ input we_a, clk,
+ output reg [7:0] q_a
+);
+ // Declare the RAM variable
+ reg [7:0] ram[63:0];
+
+ // Port A
+ always @ (posedge clk)
+ begin
+ if (we_a)
+ begin
+ ram[addr_a] <= data_a;
+ q_a <= data_a;
+ end
+ q_a <= ram[addr_a];
+ end
+
+endmodule