OpenCores
URL https://opencores.org/ocsvn/zap/zap/trunk

Subversion Repositories zap

[/] [zap/] [trunk/] [README.md] - Blame information for rev 49

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 45 Revanth
## The ZAP ARM Processor (ARMv5T Compatible, FPGA Synthesizable Soft Processor)
2 26 Revanth
 
3 47 Revanth
### Author        : Revanth Kamaraj (revanth91kamaraj@gmail.com)
4 26 Revanth
 
5 43 Revanth
### Introduction
6 26 Revanth
 
7 43 Revanth
The ZAP processor is a 10 stage pipelined processor for FPGA with support for cache and MMU (ARMv5T compliant).
8 26 Revanth
 
9 48 Revanth
Please note that the processor is *not* an ARM clone but a completely different RTL design, written from scratch (in FPGA compliant Verilog-2001), that is compliant to the ARM v5T instruction set, hence, no particular ARMX number is specified.
10
 
11
This project was created for the ORCONF-2016 Student Design Contest.
12
 
13
Please use the trunk/ directory as the project root $PROJ_ROOT.
14
 
15 45 Revanth
![Wishbone logo](https://wishbone-interconnect.readthedocs.io/en/latest/_images/wishbone_stamp.svg)
16
 
17 49 Revanth
#### Repos
18
 
19
GIT: https://github.com/krevanth/ZAP
20
 
21
SVN: https://opencores.org/projects/zap
22
 
23 43 Revanth
#### Features
24 26 Revanth
 
25 43 Revanth
##### ZAP Processor (zap_top.v)
26 26 Revanth
 
27 43 Revanth
The ZAP core is a pipelined ATMv5T processor for FPGA.
28 26 Revanth
 
29 43 Revanth
| Property              | Description             |
30
|-----------------------|-------------------------|
31
|HDL                    | Verilog-2001            |
32
|Author                 | Revanth Kamaraj         |
33
|ARM v5T ISA Support    | Fully compatible        |
34
|Branch Predictor       | Direct mapped bimodal   |
35
|Write Buffer           | Yes                     |
36
|Abort Model            | Base Restored           |
37
|Integrated v5T CP15    | Yes                     |
38
|External Coproc. Bus   | No                      |
39
|Cache Interface        | 128-Bit custom interface|
40
|26-Bit Support         | No                      |
41
|L1 Code Cache          | Direct mapped virtual   |
42
|L1 Data Cache          | Direct mapped virtual   |
43
|Cache Write Policy     | Writeback               |
44
|L1 Code TLB            | Direct mapped           |
45
|L1 Data TLB            | Direct mapped           |
46
|Bus Interface          | 32-bit Wishbone B3 Linear incrementing burst |
47
|Cache/TLB Lock Support | No                      |
48
|CP15 Compliance        | v5T (No fine pages)     |
49
|FCSE Support           | Yes                     |
50 26 Revanth
 
51 43 Revanth
 * 10-stage pipeline design. Pipeline has bypass network to resolve dependencies. Most operations execute at a rate of 1 operation per clock.
52
 * 2 write ports for the register file to allow LDR/STR with writeback to execute as a single instruction.
53 26 Revanth
 
54 43 Revanth
#### CPU Configuration (zap_top.v)
55
 
56
| Parameter                | Default| Description |
57
|--------------------------|--------|-------------|
58
| BP_ENTRIES               |  1024 | Branch Predictor Settings. Predictor RAM depth. Must be 2^n and > 2 |
59
| FIFO_DEPTH               |  4    | Branch Predictor Settings. Command FIFO depth. Must be 2^n and > 2  |
60
| STORE_BUFFER_DEPTH       | 16    | Branch Predictor Settings. Depth of the store buffer. Must be 2^n and > 2 |
61
| DATA_SECTION_TLB_ENTRIES |  4    | Data Cache/MMU Configuration. Section TLB entries. Must be 2^n (n > 0) |
62
| DATA_LPAGE_TLB_ENTRIES   |  8    | Data Cache/MMU Configuration. Large page TLB entries. Must be 2^n (n > 0) |
63
| DATA_SPAGE_TLB_ENTRIES   |  16   | Data Cache/MMU Configuration. Small page TLB entries. Must be 2^n (n > 0) |
64
| DATA_CACHE_SIZE          |  1024 | Data Cache/MMU Configuration. Cache size in bytes. Must be at least 256B and 2^n |
65
| CODE_SECTION_TLB_ENTRIES |  4    | Instruction Cache/MMU Configuration. Section TLB entries. Must be 2^n (n > 0) |
66
| CODE_LPAGE_TLB_ENTRIES   |  8    | Instruction Cache/MMU Configuration. Large page TLB entries. Must be 2^n (n > 0) |
67
| CODE_SPAGE_TLB_ENTRIES   |  16   | Instruction Cache/MMU Configuration. Small page TLB entries. Must be 2^n (n > 0) |
68
| CODE_CACHE_SIZE          |  1024 | Instruction Cache/MMU Configuration. Cache size in bytes. Must be at least 256B and 2^n |
69
 
70
#### CPU IO Interface (zap_top.v)
71 26 Revanth
 
72
Wishbone B3 compatible 32-bit bus.
73
 
74 43 Revanth
|        Dir    | Size     | Port               | Description                      |
75
|---------------|----------|--------------------|----------------------------------|
76
|        input  |          | i_clk              |  Clock                           |
77
|        input  |          | i_reset            |  Reset                           |
78
|        input  |          | i_irq              |  Interrupt. Level Sensitive.     |
79
|        input  |          | i_fiq              |  Fast Interrupt. Level Sensitive.|
80
|        output |          |  o_wb_cyc          |  Wishbone B3 Signal              |
81
|        output |          |  o_wb_stb          |  WIshbone B3 signal              |
82
|        output | [31:0]   |  o_wb_adr          |  Wishbone B3 signal.             |
83
|        output |          |  o_wb_we           |  Wishbone B3 signal.             |
84
|        output | [31:0]   |  o_wb_dat          |  Wishbone B3 signal.             |
85
|        output | [3:0]    |  o_wb_sel          |  Wishbone B3 signal.             |
86
|        output | [2:0]    |  o_wb_cti          |  Wishbone B3 signal. Cycle Type Indicator (Supported modes: Incrementing Burst, End of Burst)|
87
|        output | [1:0]    |  o_wb_bte          |  Wishbone B3 signal. Burst Type Indicator (Supported modes: Linear)                          |
88
|        input  |          |  i_wb_ack          |  Wishbone B3 signal.             |
89
|        input  | [31:0]   |  i_wb_dat          |  Wishbone B3 signal.             |
90
|        output |          |   o_wb_stb_nxt     | IGNORE THIS PORT. LEAVE OPEN.    |
91
|        output |          |   o_wb_cyc_nxt     | IGNORE THIS PORT. LEAVE OPEN.    |
92
|        output |   [31:0] |   o_wb_adr_nxt     | IGNORE THIS PORT. LEAVE OPEN.    |
93 26 Revanth
 
94
 
95 43 Revanth
### Getting Started
96
*Tested on Ubuntu 16.04 LTS/18.04 LTS*
97 26 Revanth
 
98 43 Revanth
#### Run Sample Tests
99 26 Revanth
 
100 43 Revanth
Let the variable $test_name hold the name of the test. See the src/ts directory for some basic tests pre-installed. Available test names are: factorial, arm_test, thumb_test, uart. New tests can be added using these as starting templates. Please note that these will be run on the SOC platform (chip_top) that consist of the ZAP processor, 2 x UARTs, a VIC and a timer.
101 42 Revanth
 
102 43 Revanth
```bash
103
sudo apt-get install sudo apt-get install gcc-arm-none-eabi binutils-arm-none-eabi gdb openocd iverilog gtkwave make perl xterm
104
cd $PROJ_ROOT/src/ts/$test_name # $PROJ_ROOT is the project directory.
105
make # Runs the test using IVerilog.
106
cd $PROJ_ROOT/obj/ts/$test_name # Switch to object folder.
107
gvim zap.log.gz    # View the log file
108
gtkwave zap.vcd.gz # Exists if selected by Config.cfg. See PDF document for more information.
109
```
110 44 Revanth
To use this processor in your SOC, instantiate this top level CPU module in your project: /src/rtl/cpu/zap_top.v
111 42 Revanth
 
112 43 Revanth
### Implementation Specific Details
113
 
114
#### FPGA Timing Performance (Vivado, Retime Enabled)
115
 
116
| FPGA Part          | Speed |  Critical Path |
117
|--------------------|-------|----------------|
118
| xc7a35tiftg256-1L  | 80MHz | Cache access   |
119
 
120
#### Coprocessor #15 Control Registers
121
 
122
##### Register 0 : ID Register
123
 
124
|Bits | Name    | Description                              |
125
|-----|---------|------------------------------------------|
126
|31:0 | Various | Processor ID info.                       |
127
 
128
##### Register 1 : Control
129
 
130
|Bits | Name      | Description                              |
131
|-----|-----------|------------------------------------------|
132
|0    | M         | MMU Enable. Active high                  |
133
|1    | A         | Always 0. Alignment check off            |
134
|2    | D         | Data Cache Enable. Active high           |
135
|3    | W         | Always 1. Write Buffer always on.        |
136
|4    | P         | Always 1. RESERVED                       |
137
|5    | D         | Always 1. RESERVED                       |
138
|6    | L         | Always 1. RESERVED                       |
139
|7    | B         | Always 0. Little Endian                  |
140
|8    | S         | The S bit                                |
141
|9    | R         | The R bit                                |
142
|11   | Z         | Always 1. Branch prediction enabled      |
143
|12   | I         | Instruction Cache Enable. Active high    |
144
|13   | V         | Normal Exception Vectors. Always 0       |
145
|14   | RR        | Always 1. Direct mapped cache.           |
146
|15   | L4        | Always 0. Normal behavior.               |
147
 
148
##### Register 2 : Translation Base Address
149
 
150
|Bits | Name      | Description                              |
151
|-----|-----------|------------------------------------------|
152
|13:0 | M         | Preserve value.                          |
153
|31:14| TTB       | Upper 18-bits of translation address     |
154
 
155
##### Register 3 : Domain Access Control (X=0 to X=15)
156
 
157
|Bits     | Name      | Description                              |
158
|---------|-----------|------------------------------------------|
159
|2X+1:2X  | DX        | DX access permission.                    |
160
 
161
##### Register 5 : Fault Status Register
162
 
163
|Bits | Name      | Description                              |
164
|-----|-----------|------------------------------------------|
165
|3:0  | Status    | Status.                                  |
166
|1:0  | Domain    | Domain.                                  |
167
|11:8 | SBZ       | Always 0. RESERVED                       |
168
 
169
##### Register 6 : Fault Address Register
170
 
171
|Bits | Name      | Description                              |
172
|-----|-----------|------------------------------------------|
173
|31:0 | Addr      | Fault Address.                           |
174
 
175
##### Register 7 : Cache Functions
176
 
177
| Opcode2     |  CRm            | Description                         |
178
|-------------|-----------------|-------------------------------------|
179
|         000 |         0111    |         Flush all caches.           |
180
|         000 |         0101    |         Flush I cache.              |
181
|         000 |         0110    |         Flush D cache.              |
182
|         000 |         1011    |         Clean all caches.           |
183
|         000 |         1010    |         Clean D cache.              |
184
|         000 |         1111    |         Clean and flush all caches. |
185
|         000 |         1110    |         Clean and flush D cache.    |
186
|       Other |        Other    |         Clean and flush ALL caches  |
187
 
188
 
189
##### Register 8 : TLB Functions
190
 
191
|Opcode2 |        CRm    |        Description      |
192
|--------|---------------|-------------------------|
193
|    000 |        0111   |        Flush all TLBs   |
194
|    000 |        0101   |        Flush I TLB      |
195
|    000 |        0110   |        Flush D TLB      |
196
|   Other|        Other  |        Flush all TLBs   |
197
 
198
##### Register 13 : FCSE Extentions
199
 
200
| Field | Description |
201
|-------|-------------|
202
| 31:25 | PID         |
203
 
204
##### Lockdown Support
205
* CPU memory system does not support lockdown.
206
 
207
##### Tiny Pages
208
* No support for tiny pages (1KB).
209 47 Revanth
 
210
### License
211
 
212
 
213
                    GNU GENERAL PUBLIC LICENSE
214
                       Version 2, June 1991
215
 
216
 Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
217
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
218
 Everyone is permitted to copy and distribute verbatim copies
219
 of this license document, but changing it is not allowed.
220
 
221
                            Preamble
222
 
223
  The licenses for most software are designed to take away your
224
freedom to share and change it.  By contrast, the GNU General Public
225
License is intended to guarantee your freedom to share and change free
226
software--to make sure the software is free for all its users.  This
227
General Public License applies to most of the Free Software
228
Foundation's software and to any other program whose authors commit to
229
using it.  (Some other Free Software Foundation software is covered by
230
the GNU Lesser General Public License instead.)  You can apply it to
231
your programs, too.
232
 
233
  When we speak of free software, we are referring to freedom, not
234
price.  Our General Public Licenses are designed to make sure that you
235
have the freedom to distribute copies of free software (and charge for
236
this service if you wish), that you receive source code or can get it
237
if you want it, that you can change the software or use pieces of it
238
in new free programs; and that you know you can do these things.
239
 
240
  To protect your rights, we need to make restrictions that forbid
241
anyone to deny you these rights or to ask you to surrender the rights.
242
These restrictions translate to certain responsibilities for you if you
243
distribute copies of the software, or if you modify it.
244
 
245
  For example, if you distribute copies of such a program, whether
246
gratis or for a fee, you must give the recipients all the rights that
247
you have.  You must make sure that they, too, receive or can get the
248
source code.  And you must show them these terms so they know their
249
rights.
250
 
251
  We protect your rights with two steps: (1) copyright the software, and
252
(2) offer you this license which gives you legal permission to copy,
253
distribute and/or modify the software.
254
 
255
  Also, for each author's protection and ours, we want to make certain
256
that everyone understands that there is no warranty for this free
257
software.  If the software is modified by someone else and passed on, we
258
want its recipients to know that what they have is not the original, so
259
that any problems introduced by others will not reflect on the original
260
authors' reputations.
261
 
262
  Finally, any free program is threatened constantly by software
263
patents.  We wish to avoid the danger that redistributors of a free
264
program will individually obtain patent licenses, in effect making the
265
program proprietary.  To prevent this, we have made it clear that any
266
patent must be licensed for everyone's free use or not licensed at all.
267
 
268
  The precise terms and conditions for copying, distribution and
269
modification follow.
270
 
271
                    GNU GENERAL PUBLIC LICENSE
272
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
273
 
274
  0. This License applies to any program or other work which contains
275
a notice placed by the copyright holder saying it may be distributed
276
under the terms of this General Public License.  The "Program", below,
277
refers to any such program or work, and a "work based on the Program"
278
means either the Program or any derivative work under copyright law:
279
that is to say, a work containing the Program or a portion of it,
280
either verbatim or with modifications and/or translated into another
281
language.  (Hereinafter, translation is included without limitation in
282
the term "modification".)  Each licensee is addressed as "you".
283
 
284
Activities other than copying, distribution and modification are not
285
covered by this License; they are outside its scope.  The act of
286
running the Program is not restricted, and the output from the Program
287
is covered only if its contents constitute a work based on the
288
Program (independent of having been made by running the Program).
289
Whether that is true depends on what the Program does.
290
 
291
  1. You may copy and distribute verbatim copies of the Program's
292
source code as you receive it, in any medium, provided that you
293
conspicuously and appropriately publish on each copy an appropriate
294
copyright notice and disclaimer of warranty; keep intact all the
295
notices that refer to this License and to the absence of any warranty;
296
and give any other recipients of the Program a copy of this License
297
along with the Program.
298
 
299
You may charge a fee for the physical act of transferring a copy, and
300
you may at your option offer warranty protection in exchange for a fee.
301
 
302
  2. You may modify your copy or copies of the Program or any portion
303
of it, thus forming a work based on the Program, and copy and
304
distribute such modifications or work under the terms of Section 1
305
above, provided that you also meet all of these conditions:
306
 
307
    a) You must cause the modified files to carry prominent notices
308
    stating that you changed the files and the date of any change.
309
 
310
    b) You must cause any work that you distribute or publish, that in
311
    whole or in part contains or is derived from the Program or any
312
    part thereof, to be licensed as a whole at no charge to all third
313
    parties under the terms of this License.
314
 
315
    c) If the modified program normally reads commands interactively
316
    when run, you must cause it, when started running for such
317
    interactive use in the most ordinary way, to print or display an
318
    announcement including an appropriate copyright notice and a
319
    notice that there is no warranty (or else, saying that you provide
320
    a warranty) and that users may redistribute the program under
321
    these conditions, and telling the user how to view a copy of this
322
    License.  (Exception: if the Program itself is interactive but
323
    does not normally print such an announcement, your work based on
324
    the Program is not required to print an announcement.)
325
 
326
These requirements apply to the modified work as a whole.  If
327
identifiable sections of that work are not derived from the Program,
328
and can be reasonably considered independent and separate works in
329
themselves, then this License, and its terms, do not apply to those
330
sections when you distribute them as separate works.  But when you
331
distribute the same sections as part of a whole which is a work based
332
on the Program, the distribution of the whole must be on the terms of
333
this License, whose permissions for other licensees extend to the
334
entire whole, and thus to each and every part regardless of who wrote it.
335
 
336
Thus, it is not the intent of this section to claim rights or contest
337
your rights to work written entirely by you; rather, the intent is to
338
exercise the right to control the distribution of derivative or
339
collective works based on the Program.
340
 
341
In addition, mere aggregation of another work not based on the Program
342
with the Program (or with a work based on the Program) on a volume of
343
a storage or distribution medium does not bring the other work under
344
the scope of this License.
345
 
346
  3. You may copy and distribute the Program (or a work based on it,
347
under Section 2) in object code or executable form under the terms of
348
Sections 1 and 2 above provided that you also do one of the following:
349
 
350
    a) Accompany it with the complete corresponding machine-readable
351
    source code, which must be distributed under the terms of Sections
352
    1 and 2 above on a medium customarily used for software interchange; or,
353
 
354
    b) Accompany it with a written offer, valid for at least three
355
    years, to give any third party, for a charge no more than your
356
    cost of physically performing source distribution, a complete
357
    machine-readable copy of the corresponding source code, to be
358
    distributed under the terms of Sections 1 and 2 above on a medium
359
    customarily used for software interchange; or,
360
 
361
    c) Accompany it with the information you received as to the offer
362
    to distribute corresponding source code.  (This alternative is
363
    allowed only for noncommercial distribution and only if you
364
    received the program in object code or executable form with such
365
    an offer, in accord with Subsection b above.)
366
 
367
The source code for a work means the preferred form of the work for
368
making modifications to it.  For an executable work, complete source
369
code means all the source code for all modules it contains, plus any
370
associated interface definition files, plus the scripts used to
371
control compilation and installation of the executable.  However, as a
372
special exception, the source code distributed need not include
373
anything that is normally distributed (in either source or binary
374
form) with the major components (compiler, kernel, and so on) of the
375
operating system on which the executable runs, unless that component
376
itself accompanies the executable.
377
 
378
If distribution of executable or object code is made by offering
379
access to copy from a designated place, then offering equivalent
380
access to copy the source code from the same place counts as
381
distribution of the source code, even though third parties are not
382
compelled to copy the source along with the object code.
383
 
384
  4. You may not copy, modify, sublicense, or distribute the Program
385
except as expressly provided under this License.  Any attempt
386
otherwise to copy, modify, sublicense or distribute the Program is
387
void, and will automatically terminate your rights under this License.
388
However, parties who have received copies, or rights, from you under
389
this License will not have their licenses terminated so long as such
390
parties remain in full compliance.
391
 
392
  5. You are not required to accept this License, since you have not
393
signed it.  However, nothing else grants you permission to modify or
394
distribute the Program or its derivative works.  These actions are
395
prohibited by law if you do not accept this License.  Therefore, by
396
modifying or distributing the Program (or any work based on the
397
Program), you indicate your acceptance of this License to do so, and
398
all its terms and conditions for copying, distributing or modifying
399
the Program or works based on it.
400
 
401
  6. Each time you redistribute the Program (or any work based on the
402
Program), the recipient automatically receives a license from the
403
original licensor to copy, distribute or modify the Program subject to
404
these terms and conditions.  You may not impose any further
405
restrictions on the recipients' exercise of the rights granted herein.
406
You are not responsible for enforcing compliance by third parties to
407
this License.
408
 
409
  7. If, as a consequence of a court judgment or allegation of patent
410
infringement or for any other reason (not limited to patent issues),
411
conditions are imposed on you (whether by court order, agreement or
412
otherwise) that contradict the conditions of this License, they do not
413
excuse you from the conditions of this License.  If you cannot
414
distribute so as to satisfy simultaneously your obligations under this
415
License and any other pertinent obligations, then as a consequence you
416
may not distribute the Program at all.  For example, if a patent
417
license would not permit royalty-free redistribution of the Program by
418
all those who receive copies directly or indirectly through you, then
419
the only way you could satisfy both it and this License would be to
420
refrain entirely from distribution of the Program.
421
 
422
If any portion of this section is held invalid or unenforceable under
423
any particular circumstance, the balance of the section is intended to
424
apply and the section as a whole is intended to apply in other
425
circumstances.
426
 
427
It is not the purpose of this section to induce you to infringe any
428
patents or other property right claims or to contest validity of any
429
such claims; this section has the sole purpose of protecting the
430
integrity of the free software distribution system, which is
431
implemented by public license practices.  Many people have made
432
generous contributions to the wide range of software distributed
433
through that system in reliance on consistent application of that
434
system; it is up to the author/donor to decide if he or she is willing
435
to distribute software through any other system and a licensee cannot
436
impose that choice.
437
 
438
This section is intended to make thoroughly clear what is believed to
439
be a consequence of the rest of this License.
440
 
441
  8. If the distribution and/or use of the Program is restricted in
442
certain countries either by patents or by copyrighted interfaces, the
443
original copyright holder who places the Program under this License
444
may add an explicit geographical distribution limitation excluding
445
those countries, so that distribution is permitted only in or among
446
countries not thus excluded.  In such case, this License incorporates
447
the limitation as if written in the body of this License.
448
 
449
  9. The Free Software Foundation may publish revised and/or new versions
450
of the General Public License from time to time.  Such new versions will
451
be similar in spirit to the present version, but may differ in detail to
452
address new problems or concerns.
453
 
454
Each version is given a distinguishing version number.  If the Program
455
specifies a version number of this License which applies to it and "any
456
later version", you have the option of following the terms and conditions
457
either of that version or of any later version published by the Free
458
Software Foundation.  If the Program does not specify a version number of
459
this License, you may choose any version ever published by the Free Software
460
Foundation.
461
 
462
  10. If you wish to incorporate parts of the Program into other free
463
programs whose distribution conditions are different, write to the author
464
to ask for permission.  For software which is copyrighted by the Free
465
Software Foundation, write to the Free Software Foundation; we sometimes
466
make exceptions for this.  Our decision will be guided by the two goals
467
of preserving the free status of all derivatives of our free software and
468
of promoting the sharing and reuse of software generally.
469
 
470
                            NO WARRANTY
471
 
472
  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
473
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
474
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
475
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
476
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
477
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
478
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
479
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
480
REPAIR OR CORRECTION.
481
 
482
  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
483
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
484
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
485
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
486
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
487
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
488
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
489
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
490
POSSIBILITY OF SUCH DAMAGES.
491
 
492
                     END OF TERMS AND CONDITIONS
493
 
494
            How to Apply These Terms to Your New Programs
495
 
496
  If you develop a new program, and you want it to be of the greatest
497
possible use to the public, the best way to achieve this is to make it
498
free software which everyone can redistribute and change under these terms.
499
 
500
  To do so, attach the following notices to the program.  It is safest
501
to attach them to the start of each source file to most effectively
502
convey the exclusion of warranty; and each file should have at least
503
the "copyright" line and a pointer to where the full notice is found.
504
 
505
    
506
    Copyright (C)   
507
 
508
    This program is free software; you can redistribute it and/or modify
509
    it under the terms of the GNU General Public License as published by
510
    the Free Software Foundation; either version 2 of the License, or
511
    (at your option) any later version.
512
 
513
    This program is distributed in the hope that it will be useful,
514
    but WITHOUT ANY WARRANTY; without even the implied warranty of
515
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
516
    GNU General Public License for more details.
517
 
518
    You should have received a copy of the GNU General Public License along
519
    with this program; if not, write to the Free Software Foundation, Inc.,
520
    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
521
 
522
Also add information on how to contact you by electronic and paper mail.
523
 
524
If the program is interactive, make it output a short notice like this
525
when it starts in an interactive mode:
526
 
527
    Gnomovision version 69, Copyright (C) year name of author
528
    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
529
    This is free software, and you are welcome to redistribute it
530
    under certain conditions; type `show c' for details.
531
 
532
The hypothetical commands `show w' and `show c' should show the appropriate
533
parts of the General Public License.  Of course, the commands you use may
534
be called something other than `show w' and `show c'; they could even be
535
mouse-clicks or menu items--whatever suits your program.
536
 
537
You should also get your employer (if you work as a programmer) or your
538
school, if any, to sign a "copyright disclaimer" for the program, if
539
necessary.  Here is a sample; alter the names:
540
 
541
  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
542
  `Gnomovision' (which makes passes at compilers) written by James Hacker.
543
 
544
  , 1 April 1989
545
  Ty Coon, President of Vice
546
 
547
This General Public License does not permit incorporating your program into
548
proprietary programs.  If your program is a subroutine library, you may
549
consider it more useful to permit linking proprietary applications with the
550
library.  If this is what you want to do, use the GNU Lesser General
551
Public License instead of this License.

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.