Skip to content
Snippets Groups Projects
Commit a3dbccf8 authored by Dimitris Lampridis's avatar Dimitris Lampridis
Browse files

[hdl] avoid f_log2() circular dependencies in gc_extend_pulse

Reported by Olof Kindgren (@olofk). See also merge request !4

.

Signed-off-by: default avatarDimitris Lampridis <dimitris.lampridis@cern.ch>
parent 85964c94
Branches
Tags
No related merge requests found
...@@ -9,6 +9,15 @@ Change Log ...@@ -9,6 +9,15 @@ Change Log
- Format inspired by: `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_ - Format inspired by: `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_
- Versioning scheme follows: `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_ - Versioning scheme follows: `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_
Unreleased
==========
https://ohwr.org/project/general-cores/compare/master...proposed_master
Fixed
-----
- [hdl] avoid f_log2() circular dependencies in gc_extend_pulse.
1.0.4 - 2020-03-26 1.0.4 - 2020-03-26
================== ==================
https://www.ohwr.org/project/general-cores/tags/v1.0.4 https://www.ohwr.org/project/general-cores/tags/v1.0.4
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
-- Author : Tomasz Wlostowski -- Author : Tomasz Wlostowski
-- Company : CERN -- Company : CERN
-- Created : 2009-09-01 -- Created : 2009-09-01
-- Last update: 2012-06-19 -- Last update: 2020-03-30
-- Platform : FPGA-generic -- Platform : FPGA-generic
-- Standard : VHDL '93 -- Standard : VHDL '93
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
...@@ -41,7 +41,6 @@ use ieee.NUMERIC_STD.all; ...@@ -41,7 +41,6 @@ use ieee.NUMERIC_STD.all;
library work; library work;
use work.gencores_pkg.all; use work.gencores_pkg.all;
use work.genram_pkg.all;
entity gc_extend_pulse is entity gc_extend_pulse is
...@@ -60,7 +59,7 @@ end gc_extend_pulse; ...@@ -60,7 +59,7 @@ end gc_extend_pulse;
architecture rtl of gc_extend_pulse is architecture rtl of gc_extend_pulse is
signal cntr : unsigned(f_log2_size(g_width)-1 downto 0); signal cntr : unsigned(f_log2_ceil(g_width)-1 downto 0);
signal extended_int : std_logic; signal extended_int : std_logic;
begin -- rtl begin -- rtl
......
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