代码搜索:Numeric
找到约 7,754 项符合「Numeric」的源代码
代码结果 7,754
www.eeworm.com/read/441293/7672092
vhd memory.vhd
LIBRARY IEEE;
USE IEEE.std_logic_1164.ALL;
USE IEEE.numeric_std.ALL;
-- use package
USE work.procmem_definitions.ALL;
ENTITY memory IS
PORT (
clk : IN STD_ULOGIC;
rst_n : IN STD_ULOGIC;
MemRead : IN S
www.eeworm.com/read/441274/7672214
vhd alu.vhd
LIBRARY IEEE;
USE IEEE.std_logic_1164.ALL;
USE IEEE.numeric_std.ALL;
-- use package
USE work.procmem_definitions.ALL;
ENTITY alu IS
PORT (
a, b : IN STD_ULOGIC_VECTOR(width-1 DOWNTO 0);
opcode : IN ST
www.eeworm.com/read/441274/7672215
bak alu.vhd.bak
LIBRARY IEEE;
USE IEEE.std_logic_1164.ALL;
USE IEEE.numeric_std.ALL;
-- use package
USE work.procmem_definitions.ALL;
ENTITY alu IS
PORT (
a, b : IN STD_ULOGIC_VECTOR(width-1 DOWNTO 0);
opcode : IN ST
www.eeworm.com/read/441060/7676637
vhd ram.vhd
library ieee;
use ieee.std_logic_1164.all;
--use ieee.std_logic_arith;
use ieee.std_logic_signed.all;
use ieee.numeric_std.all;
entity ram is
port(address:in std_logic_vector(15 downt
www.eeworm.com/read/440140/7693466
vhd flash_tb.vhd
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
USE ieee.numeric_std.ALL;
LIBRARY UNISIM;
USE UNISIM.Vcomponents.ALL;
LIBRARY ieee;
USE IEEE.STD_LOGIC_TEXTIO.ALL;
USE STD.TEXTIO.ALL;
ENTITY testbench
www.eeworm.com/read/398898/7912202
vhd fsm.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use work.Constants.all;
entity FSM is
port (reset, clk : in std_logic;
strobe : out std_logic;
sample : out std_logic;
www.eeworm.com/read/297458/8016575
vhd ddr_sdram_auk_ddr_datapath_pack.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.numeric_std.all;
package ddr_sdram_auk_ddr_datapath_pack is
component ddr_sdram_auk_ddr_datapath is
P
www.eeworm.com/read/296921/8071749
vhd sine_wave_tb.vhd
-- Test bench created by tb_gen_vhdl.pl
-- Copyright Doulos Ltd
-- SD, 10 May 2002
library IEEE;
use IEEE.Std_logic_1164.all;
use IEEE.Numeric_Std.all;
use work.sine_package.all;
entity sin
www.eeworm.com/read/332405/12759667
vhd sys_int.vhd
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.numeric_STD.all;
library UNISIM;
--use UNISIM.vcomponents.all;
entity sys_int is
generic (
ADDR_MSB : integer := 31;
DATA_MSB : integer := 31;
C