summaryrefslogtreecommitdiffstats
path: root/translated_examples/ifchain.v
diff options
context:
space:
mode:
authorRodrigo Alejandro Melo <rodrigomelo9@gmail.com>2017-02-12 21:37:55 -0300
committerRodrigo Alejandro Melo <rodrigomelo9@gmail.com>2017-02-14 22:01:08 -0300
commit40194fa7f34b2130afe4be5d02b41cd56be0f3a5 (patch)
tree0620767a9848a038b20ed22aabc65deb53c826de /translated_examples/ifchain.v
parentfd94b98a5c5f7ec819511445bdcf4bbe34338b7b (diff)
downloadvhdl2vl-40194fa7f34b2130afe4be5d02b41cd56be0f3a5.tar.gz
vhdl2vl-40194fa7f34b2130afe4be5d02b41cd56be0f3a5.zip
Added analysis of examples with GHDL
Some examples were corrected according GHDL complains. Corresponding traslated_examples were modified. Use of synopsys libraries was removed. Translation of gh_fifo_async16_sr.vhd fails (complains about 'unsigned'). The problem was comented.
Diffstat (limited to 'translated_examples/ifchain.v')
-rw-r--r--translated_examples/ifchain.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/translated_examples/ifchain.v b/translated_examples/ifchain.v
index feddd03..b719b82 100644
--- a/translated_examples/ifchain.v
+++ b/translated_examples/ifchain.v
@@ -41,7 +41,7 @@ reg [31:0] c[3:0];
always @(posedge clk) begin
if({b[1],a[3:2]} == 3'b001) begin
status <= 1'b1;
- c[0] <= 16'hFFFF;
+ c[0] <= 32'hFFFFFFFF;
end
end
OpenPOWER on IntegriCloud