altera_mf.vhd
来自「一个非常好的dc使用书籍 一个非常好的dc使用书籍」· VHDL 代码 · 共 1,443 行 · 第 1/5 页
VHD
1,443 行
-- Copyright (C) 1988-2002 Altera Corporation
-- Any megafunction design, and related netlist (encrypted or decrypted),
-- support information, device programming or simulation file, and any other
-- associated documentation or information provided by Altera or a partner
-- under Altera's Megafunction Partnership Program may be used only
-- to program PLD devices (but not masked PLD devices) from Altera. Any
-- other use of such megafunction design, netlist, support information,
-- device programming or simulation file, or any other related documentation
-- or information is prohibited for any other purpose, including, but not
-- limited to modification, reverse engineering, de-compiling, or use with
-- any other silicon devices, unless such use is explicitly licensed under
-- a separate agreement with Altera or a megafunction partner. Title to the
-- intellectual property, including patents, copyrights, trademarks, trade
-- secrets, or maskworks, embodied in any such megafunction design, netlist,
-- support information, device programming or simulation file, or any other
-- related documentation or information provided by Altera or a megafunction
-- partner, remains with Altera, the megafunction partner, or their respective
-- licensors. No other licenses, including any licenses needed under any third
-- party's intellectual property, are provided herein.
-- Quartus II 3.0 Build 197 06/18/2003
---START_PACKAGE_HEADER-----------------------------------------------------
--
-- Package Name : ALTERA_DEVICE_FAMILIES
--
-- Description : Common Altera device families comparison
--
---END_PACKAGE_HEADER--------------------------------------------------------
-- BEGINING OF PACKAGE
Library ieee;
use ieee.std_logic_1164.all;
-- PACKAGE DECLARATION
package ALTERA_DEVICE_FAMILIES is
-- FUNCTION DECLARATION
function IS_VALID_FAMILY (device: in string) return boolean;
function IS_FAMILY_APEX20K (device : in string) return boolean;
function IS_FAMILY_APEX20KE (device : in string) return boolean;
function IS_FAMILY_APEXII (device : in string) return boolean;
function IS_FAMILY_ACEX2K (device : in string) return boolean;
function IS_FAMILY_AURORA (device : in string) return boolean;
function IS_FAMILY_STRATIX (device : in string) return boolean;
function IS_FAMILY_MERCURY (device : in string) return boolean;
function IS_FAMILY_FLEX10KE (device : in string) return boolean;
end ALTERA_DEVICE_FAMILIES;
package body ALTERA_DEVICE_FAMILIES is
function IS_VALID_FAMILY (device : in string) return boolean is
variable is_valid : boolean := false;
begin
if (IS_FAMILY_APEX20K(device) or IS_FAMILY_APEX20KE(device) or IS_FAMILY_APEXII(
device) or IS_FAMILY_ACEX2K(device) or IS_FAMILY_AURORA(device) or
IS_FAMILY_STRATIX(device) or IS_FAMILY_MERCURY(device))
then
is_valid := true;
end if;
return is_valid;
end IS_VALID_FAMILY;
function IS_FAMILY_APEX20K (device : in string) return boolean is
variable is_20k : boolean := false;
begin
if (device = "APEX20K")
then
is_20k := true;
end if;
return is_20k;
end IS_FAMILY_APEX20K;
function IS_FAMILY_APEX20KE (device : in string) return boolean is
variable is_20ke : boolean := false;
begin
if ((device = "APEX20KE") or (device = "APEX20KC") or (device = "EXCALIBUR_ARM") or
(device = "EXCALIBUR_MIPS"))
then
is_20ke := true;
end if;
return is_20ke;
end IS_FAMILY_APEX20KE;
function IS_FAMILY_APEXII (device : in string) return boolean is
variable is_apexii : boolean := false;
begin
if ((device = "APEX II") or (device = "APEXII"))
then
is_apexii := true;
end if;
return is_apexii;
end IS_FAMILY_APEXII;
function IS_FAMILY_ACEX2K (device : in string) return boolean is
variable is_acex2k : boolean := false;
begin
if ((device = "CYCLONE") or (device = "Cyclone"))
then
is_acex2k := true;
end if;
return is_acex2k;
end IS_FAMILY_ACEX2K;
function IS_FAMILY_AURORA (device : in string) return boolean is
variable is_aurora : boolean := false;
begin
if ((device = "STRATIX-GX") or (device = "STRATIX GX") or (device = "Stratix GX"))
then
is_aurora := true;
end if;
return is_aurora;
end IS_FAMILY_AURORA;
function IS_FAMILY_STRATIX (device : in string) return boolean is
variable is_stratix : boolean := false;
begin
if ((device = "STRATIX") or (device = "Stratix"))
then
is_stratix := true;
end if;
return is_stratix;
end IS_FAMILY_STRATIX;
function IS_FAMILY_MERCURY (device : in string) return boolean is
variable is_mercury : boolean := false;
begin
if ((device = "MERCURY") or (device = "Mercury"))
then
is_mercury := true;
end if;
return is_mercury;
end IS_FAMILY_MERCURY;
function IS_FAMILY_FLEX10KE (device : in string) return boolean is
variable is_flex10ke : boolean := false;
begin
if ((device = "FLEX10KE") or (device = "FLEX 10KE") or
(device = "ACEX1K") or (device = "ACEX 1K"))
then
is_flex10ke := true;
end if;
return is_flex10ke;
end IS_FAMILY_FLEX10KE;
end ALTERA_DEVICE_FAMILIES;
-- END OF PACKAGE
---START_PACKAGE_HEADER-----------------------------------------------------
--
-- Package Name : ALTERA_COMMON_CONVERSION
--
-- Description : Common conversion functions
--
---END_PACKAGE_HEADER--------------------------------------------------------
-- BEGINING OF PACKAGE
Library ieee;
use ieee.std_logic_1164.all;
use std.textio.all;
-- PACKAGE DECLARATION
package ALTERA_COMMON_CONVERSION is
-- FUNCTION DECLARATION
function INT_TO_STR_RAM (value : in integer) return string;
function INT_TO_STR_ARITH (value : in integer) return string;
function HEX_STR_TO_INT (str : in string) return integer;
procedure SHRINK_LINE (str_line : inout line; pos : in integer);
end ALTERA_COMMON_CONVERSION;
package body ALTERA_COMMON_CONVERSION is
-- This function converts an integer to a string
function INT_TO_STR_RAM (value : in integer) return string is
variable ivalue : integer := 0;
variable index : integer := 0;
variable digit : integer := 0;
variable line_no: string(8 downto 1) := " ";
begin
ivalue := value;
index := 1;
while (ivalue > 0) loop
digit := ivalue MOD 10;
ivalue := ivalue/10;
case digit is
when 0 => line_no(index) := '0';
when 1 => line_no(index) := '1';
when 2 => line_no(index) := '2';
when 3 => line_no(index) := '3';
when 4 => line_no(index) := '4';
when 5 => line_no(index) := '5';
when 6 => line_no(index) := '6';
when 7 => line_no(index) := '7';
when 8 => line_no(index) := '8';
when 9 => line_no(index) := '9';
when others =>
ASSERT FALSE
REPORT "Illegal number!"
SEVERITY ERROR;
end case;
index := index + 1;
end loop;
return line_no;
end INT_TO_STR_RAM;
function INT_TO_STR_ARITH (value : in integer) return string is
variable ivalue : integer := 0;
variable index : integer := 0;
variable digit : integer := 0;
variable temp: string(10 downto 1) := "0000000000";
begin
ivalue := value;
index := 1;
while (ivalue > 0) loop
digit := ivalue mod 10;
ivalue := ivalue/10;
case digit is
when 0 => temp(index) := '0';
when 1 => temp(index) := '1';
when 2 => temp(index) := '2';
when 3 => temp(index) := '3';
when 4 => temp(index) := '4';
when 5 => temp(index) := '5';
when 6 => temp(index) := '6';
when 7 => temp(index) := '7';
when 8 => temp(index) := '8';
when 9 => temp(index) := '9';
when others =>
ASSERT FALSE
REPORT "Illegal number!"
SEVERITY ERROR;
end case;
index := index + 1;
end loop;
if value < 0 then
return '-'& temp(index downto 1);
else
return temp(index downto 1);
end if;
end INT_TO_STR_ARITH;
-- This function converts a hexadecimal number to an integer
function HEX_STR_TO_INT (str : in string) return integer is
variable len : integer := str'length;
variable ivalue : integer := 0;
variable digit : integer := 0;
begin
for i in len downto 1 loop
case str(i) is
when '0' => digit := 0;
when '1' => digit := 1;
when '2' => digit := 2;
when '3' => digit := 3;
when '4' => digit := 4;
when '5' => digit := 5;
when '6' => digit := 6;
when '7' => digit := 7;
when '8' => digit := 8;
when '9' => digit := 9;
when 'A' => digit := 10;
when 'a' => digit := 10;
when 'B' => digit := 11;
when 'b' => digit := 11;
when 'C' => digit := 12;
when 'c' => digit := 12;
when 'D' => digit := 13;
when 'd' => digit := 13;
when 'E' => digit := 14;
when 'e' => digit := 14;
when 'F' => digit := 15;
when 'f' => digit := 15;
when others =>
ASSERT FALSE
REPORT "Illegal character "& str(i) & "in Intel Hex File! "
SEVERITY ERROR;
end case;
ivalue := ivalue * 16 + digit;
end loop;
return ivalue;
end HEX_STR_TO_INT;
-- This procedure "cuts" the str_line into desired length
procedure SHRINK_LINE (str_line : inout line; pos : in integer) is
subtype nstring is string(1 to pos);
variable str : nstring;
begin
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?