From dd2ea9182b808210489135bef4aeeac5c5ff0d1e Mon Sep 17 00:00:00 2001 From: David Banks Date: Sat, 28 Nov 2015 17:31:58 +0000 Subject: [PATCH] Fixed an incorrect module name Change-Id: I952135d7be04e332ca4cc5de7f6491bc0fedf5ec --- src/AVR8/Memory/XPM_T65.vhd | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/AVR8/Memory/XPM_T65.vhd b/src/AVR8/Memory/XPM_T65.vhd index db1338d..7528fb3 100644 --- a/src/AVR8/Memory/XPM_T65.vhd +++ b/src/AVR8/Memory/XPM_T65.vhd @@ -2,10 +2,12 @@ library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_unsigned.all; +-- This contains 0.72 of the ICE T65 (a.k.a AtomCpuMon) firmware + -- For f_log2 definition use WORK.SynthCtrlPack.all; -entity XPM_Generic is +entity XPM is generic ( WIDTH : integer; SIZE : integer @@ -20,7 +22,7 @@ entity XPM_Generic is ); end; -architecture RTL of XPM_Generic is +architecture RTL of XPM is type ram_type is array (0 to SIZE - 1) of std_logic_vector (WIDTH - 1 downto 0);