1 |
746 |
lampret |
//////////////////////////////////////////////////////////////////////
|
2 |
|
|
//// ////
|
3 |
|
|
//// timescale.v ////
|
4 |
|
|
//// ////
|
5 |
|
|
//// ////
|
6 |
|
|
//// This file is part of the "UART 16550 compatible" project ////
|
7 |
|
|
//// http://www.opencores.org/cores/uart16550/ ////
|
8 |
|
|
//// ////
|
9 |
|
|
//// Documentation related to this project: ////
|
10 |
|
|
//// - http://www.opencores.org/cores/uart16550/ ////
|
11 |
|
|
//// ////
|
12 |
|
|
//// Projects compatibility: ////
|
13 |
|
|
//// - WISHBONE ////
|
14 |
|
|
//// RS232 Protocol ////
|
15 |
|
|
//// 16550D uart (mostly supported) ////
|
16 |
|
|
//// ////
|
17 |
|
|
//// Overview (main Features): ////
|
18 |
|
|
//// Defines of the Core ////
|
19 |
|
|
//// ////
|
20 |
|
|
//// Known problems (limits): ////
|
21 |
|
|
//// None ////
|
22 |
|
|
//// ////
|
23 |
|
|
//// To Do: ////
|
24 |
|
|
//// Nothing. ////
|
25 |
|
|
//// ////
|
26 |
|
|
//// Author(s): ////
|
27 |
|
|
//// - gorban@opencores.org ////
|
28 |
|
|
//// - Jacob Gorban ////
|
29 |
|
|
//// - Igor Mohor (igorm@opencores.org) ////
|
30 |
|
|
//// ////
|
31 |
|
|
//// Created: 2001/05/12 ////
|
32 |
|
|
//// Last Updated: 2001/05/17 ////
|
33 |
|
|
//// (See log for the revision history) ////
|
34 |
|
|
//// ////
|
35 |
|
|
//// ////
|
36 |
|
|
//////////////////////////////////////////////////////////////////////
|
37 |
|
|
//// ////
|
38 |
|
|
//// Copyright (C) 2000, 2001 Authors ////
|
39 |
|
|
//// ////
|
40 |
|
|
//// This source file may be used and distributed without ////
|
41 |
|
|
//// restriction provided that this copyright statement is not ////
|
42 |
|
|
//// removed from the file and that any derivative work contains ////
|
43 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
44 |
|
|
//// ////
|
45 |
|
|
//// This source file is free software; you can redistribute it ////
|
46 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
47 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
48 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
49 |
|
|
//// later version. ////
|
50 |
|
|
//// ////
|
51 |
|
|
//// This source is distributed in the hope that it will be ////
|
52 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
53 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
54 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
55 |
|
|
//// details. ////
|
56 |
|
|
//// ////
|
57 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
58 |
|
|
//// Public License along with this source; if not, download it ////
|
59 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
60 |
|
|
//// ////
|
61 |
|
|
//////////////////////////////////////////////////////////////////////
|
62 |
|
|
// Timescale define
|
63 |
|
|
|
64 |
|
|
`timescale 1ns/10ps
|