Line 1... |
Line 1... |
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
-- Copyright 2007 Ken Campbell
|
-- Copyright 2007 Ken Campbell
|
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
-- $Author: sckoarn $
|
-- $Author: sckoarn $
|
--
|
--
|
-- $Date: 2007-04-06 04:06:48 $
|
-- $Date: 2007-08-21 02:43:14 $
|
--
|
--
|
-- $Name: not supported by cvs2svn $
|
-- $Name: not supported by cvs2svn $
|
--
|
--
|
-- $Id: tb_pkg_header.vhd,v 1.1.1.1 2007-04-06 04:06:48 sckoarn Exp $
|
-- $Id: tb_pkg_header.vhd,v 1.2 2007-08-21 02:43:14 sckoarn Exp $
|
--
|
--
|
-- $Source: /home/marcus/revision_ctrl_test/oc_cvs/cvs/vhld_tb/source/tb_pkg_header.vhd,v $
|
-- $Source: /home/marcus/revision_ctrl_test/oc_cvs/cvs/vhld_tb/source/tb_pkg_header.vhd,v $
|
--
|
--
|
-- Description : The the testbench package header file.
|
-- Description : The the testbench package header file.
|
-- Initial GNU release.
|
-- Initial GNU release.
|
Line 31... |
Line 31... |
-- along with The VHDL Test Bench; if not, write to the Free Software
|
-- along with The VHDL Test Bench; if not, write to the Free Software
|
-- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
-- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
-- Revision History:
|
-- Revision History:
|
-- $Log: not supported by cvs2svn $
|
-- $Log: not supported by cvs2svn $
|
|
-- Revision 1.1.1.1 2007/04/06 04:06:48 sckoarn
|
|
-- Import of the vhld_tb
|
|
--
|
--
|
--
|
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
library IEEE;
|
library IEEE;
|
|
|
use IEEE.STD_LOGIC_1164.all;
|
use IEEE.STD_LOGIC_1164.all;
|
use IEEE.STD_LOGIC_ARITH.all;
|
use IEEE.STD_LOGIC_ARITH.all;
|
use std.textio.all;
|
use std.textio.all;
|
library ieee_proposed;
|
library ieee_proposed;
|
use ieee_proposed.STD_LOGIC_1164_additions.all;
|
use ieee_proposed.STD_LOGIC_1164_additions.all;
|
|
|
package ew_tb_pkg2 is
|
package tb_pkg is
|
|
|
-- Constants
|
-- Constants
|
constant max_str_len : integer := 256;
|
constant max_str_len : integer := 256;
|
constant max_field_len : integer := 48;
|
constant max_field_len : integer := 48;
|
constant c_stm_text_len : integer := 128;
|
constant c_stm_text_len : integer := 128;
|
Line 214... |
Line 217... |
-- This procedure dumps to the simulation window the current instruction
|
-- This procedure dumps to the simulation window the current instruction
|
-- sequence. The whole thing will be dumped, which could be big.
|
-- sequence. The whole thing will be dumped, which could be big.
|
-- ** intended for testbench development debug**
|
-- ** intended for testbench development debug**
|
procedure dump_inst_sequ(variable inst_sequ : in stim_line_ptr);
|
procedure dump_inst_sequ(variable inst_sequ : in stim_line_ptr);
|
|
|
end ew_tb_pkg2;
|
end tb_pkg;
|
|
|
No newline at end of file
|
No newline at end of file
|