Commit 605b1e25 authored by Grzegorz Daniluk's avatar Grzegorz Daniluk

genrams/memory_loader_pkg: update condition to make it understandible for Libero/Synplify

Logically it's exactly the same, but for some reason Synplify doesn't
like "/=" for file opening status.
parent 43fbac98
......@@ -88,7 +88,7 @@ package body memory_loader_pkg is
open_status : in file_open_status;
fail_if_notfound : in boolean) is
begin
if open_status /= OPEN_OK then
if not (open_status = OPEN_OK) then
if fail_if_notfound then
report "f_load_mem_from_file(): can't open file '"&file_name&"'" severity FAILURE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment