w11 - vhd 0.794
W11 CPU core and support modules
Loading...
Searching...
No Matches
gsr_pulse_dummy.vhd
Go to the documentation of this file.
1-- $Id: gsr_pulse_dummy.vhd 1181 2019-07-08 17:00:50Z mueller $
2-- SPDX-License-Identifier: GPL-3.0-or-later
3-- Copyright 2016- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
4--
5------------------------------------------------------------------------------
6-- Module Name: gsr_pulse - sim
7-- Description: pulse GSR at startup (no action dummy for behavioral sims)
8--
9-- Dependencies: -
10-- Test bench: -
11-- Target Devices: generic
12-- Tool versions: viv 2016.2; ghdl 0.33
13-- Revision History:
14-- 2016-09-17 808 1.0 Initial version
15------------------------------------------------------------------------------
16
17library ieee;
18use ieee.std_logic_1164.all;
19
20entity gsr_pulse is -- pulse GSR at startup
21 generic (
22 GSR_WIDTH : Delay_length:= 100 ns); -- GSR pulse length
23end gsr_pulse;
24
25
26architecture sim of gsr_pulse is
27
28begin
29
30 -- dummy, for behavioral simulations without VCOMPONENTS
31
32end sim;
GSR_WIDTH Delay_length := 100 ns
Definition: gsr_pulse.vhd:25