-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_.vhd
44 lines (39 loc) · 1.5 KB
/
_.vhd
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
35
36
37
38
39
40
41
42
43
44
---------------------------------------------------------------------------------
--
-- Copyright (c) 2017 by SISLAB Team, LSI Design Contest 2018.
-- The University of Engineering and Technology, Vietnam National University.
-- All right resevered.
--
-- Copyright notification
-- No part may be reproduced except as authorized by written permission.
--
-- @File : !!FILE
-- @Author : Van-Nam DINH @Modifier : Van-Nam DINH
-- @Created Date : !!DATE @Modified Date : !!DATE
-- @Project : Artificial Neural Network
-- @Module : !!MODULE
-- @Description :
-- @Version :
-- @ID :
--
---------------------------------------------------------------------------------
---------------------------------------------------------------------------------
-- Library declaration
---------------------------------------------------------------------------------
library ieee;
use ieee.std_logic_1164.all;
---------------------------------------------------------------------------------
-- Entity declaration
---------------------------------------------------------------------------------
entity !!MODULE is
port(
clk : in std_logic;
rst : in std_logic;
);
end entity;
---------------------------------------------------------------------------------
-- Architecture description
---------------------------------------------------------------------------------
architecture behavior of !!MODULE is
begin
end behavior;