-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSDRAM.vhf
36 lines (31 loc) · 1.18 KB
/
SDRAM.vhf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
--------------------------------------------------------------------------------
-- Copyright (c) 1995-2011 Xilinx, Inc. All rights reserved.
--------------------------------------------------------------------------------
-- ____ ____
-- / /\/ /
-- /___/ \ / Vendor: Xilinx
-- \ \ \/ Version : 13.4
-- \ \ Application : sch2hdl
-- / / Filename : SDRAM.vhf
-- /___/ /\ Timestamp : 10/30/2020 01:01:11
-- \ \ / \
-- \___\/\___\
--
--Command: sch2hdl -sympath C:/Users/Yasamin/Documents/Classes/COE758/CacheController-master/ipcore_dir -intstyle ise -family spartan3e -flat -suppress -vhdl C:/Users/Yasamin/Documents/Classes/COE758/CacheController-master/SDRAM.vhf -w C:/Users/Yasamin/Documents/Classes/COE758/CacheController-master/SDRAM.sch
--Design Name: SDRAM
--Device: spartan3e
--Purpose:
-- This vhdl netlist is translated from an ECS schematic. It can be
-- synthesized and simulated, but it should not be modified.
--
library ieee;
use ieee.std_logic_1164.ALL;
use ieee.numeric_std.ALL;
library UNISIM;
use UNISIM.Vcomponents.ALL;
entity SDRAM is
port ( );
end SDRAM;
architecture BEHAVIORAL of SDRAM is
begin
end BEHAVIORAL;