Skip to content

Commit

Permalink
minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
stnolting committed Dec 19, 2023
1 parent 33f8382 commit 2dfd2ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rtl/core/neorv32_fifo.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ begin
-- Read Data ------------------------------------------------------------------------------
-- -------------------------------------------------------------------------------------------
fifo_read_async: -- asynchronous read
if (FIFO_RSYNC = false) generate
if not FIFO_RSYNC generate
rdata_o <= fifo_mem(to_integer(unsigned(r_pnt(r_pnt'left-1 downto 0))));
-- status --
free_o <= free;
Expand All @@ -158,7 +158,7 @@ begin
end generate;

fifo_read_sync: -- synchronous read
if (FIFO_RSYNC = true) generate
if FIFO_RSYNC generate
sync_read: process(clk_i)
begin
if rising_edge(clk_i) then
Expand Down

0 comments on commit 2dfd2ab

Please sign in to comment.