tbdef.vhd

来自「一个航天航空用的Sparc处理器(配美国欧洲宇航局用的R_tems嵌入式操作系统」· VHDL 代码 · 共 40 行

VHD
40
字号
-----------------------------------------------------------------------------
--  This file is a part of the LEON VHDL model
--  Copyright (C) 1999  European Space Agency (ESA)
--
--  This program is free software; you can redistribute it and/or modify
--  it under the terms of the GNU General Public License as published by
--  the Free Software Foundation; either version 2 of the License, or
--  (at your option) any later version.
--
--  See the file COPYING for the full details of the license.
-----------------------------------------------------------------------------   
-- Entity:      tbdef
-- File:        tbdef.vhd
-- Author:      Jiri Gaisler - ESA/ESTEC
-- Description: Default generic test bench
------------------------------------------------------------------------------  
-- Version control:
-- 17-09-1998:  : First implemetation
-- 26-09-1999:  : Release 1.0
------------------------------------------------------------------------------  

use work.tblib.all;

-- standard testbench

entity tbleon is end;
architecture behav of tbleon is begin tb : tbgen; end;
                                                                 

-- default config: 32-bit prom, 32-bit ram, EDAC, 0ws

configuration tbdef of tbleon is
  for behav 
    for all: 
      tbgen use entity work.tbgen(behav);
    end for;
  end for;
end tbdef;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?