Добавил:
Upload Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Скачиваний:
115
Добавлен:
26.03.2016
Размер:
7.4 Mб
Скачать

10.19 Bibliography

The definitive reference guide to VHDL is the IEEE VHDL LRM [IEEE, 1076-1993]. The LRM is initially difficult to read because it is concise and precise (the LRM is intended for tool builders and experienced tool users, not as a tutorial). The LRM does form a useful reference--as does a dictionary for serious users of any language. You might think of the LRM as a legal contract between you and the company that sells you software that is compliant with the standard. VHDL software uses the terminology of the LRM for error messages, so it is necessary to understand the terms and definitions of the LRM. The WAVES standard [IEEE 1029.1-1991] deals with the problems of interfacing VHDL testbenches to testers.

VHDL International maintains VIUF (VHDL International Users' Forum) Internet Services ( http:/www.vhdl.org ) and links to other groups working on VHDL including the IEEE synthesis packages, IEEE WAVES packages, and IEEE VITAL packages (see also Appendix A).

The frequently asked questions (FAQ) list for the VHDL newsgroup comp.lang.vhdl is a useful starting point (the list is archived at gopher://kona.ee.pitt.edu/h0/NewsGroupArchives ). Information on character sets and the problems of exchanging information across national boundaries can be found at ftp://watsun.cc.columbia.edu/kermit/charsets .

10.20 References

Page numbers in brackets after the reference indicate the location in the chapter body.

IEEE 1029.1-1991. IEEE Standard for Waveform and Vector Exchange (WAVES). IEEE Std 1029.1-1991. The Institute of Electrical and Electronics Engineers, Inc., New York. Available from The Institute of Electrical and Electronics Engineers, Inc., 345 East 47th Street, New York, NY 10017 USA.

IEEE 1076-1993. IEEE Standard VHDL Language Reference Manual (ANSI).

IEEE Std. 1076-1993. The Institute of Electrical and Electronics Engineers, Inc., New York. Available from The Institute of Electrical and Electronics Engineers, Inc., 345 East 47th Street, New York, NY 10017 USA. [p. 380]

IEEE 1076.2-1996. Standard VHDL Language Mathematical Packages. IEEE Ref. AD129-NYF. Approved by IEEE Standards Board on 19 September 1996. [p. 404].

ISO 8859-1. 1987 (E). Information Processing--8-bit single-byte coded graphic character sets--Part 1: Latin Alphabet No. 1. American National Standards Institute, Hackensack, NJ; 1987. Available from Sales Department, American National Standards Institute, 105-111 South State Street, Hackensack, NJ 07601 USA. [p. 391]

IEEE Language Reference Manual project

This material is an experimental project to link ASICs... the book with the IEEE VHDL Language Reference Manual. The VHDL-93 LRM was published on CD-ROM in 1997, but contained errors. The VHDL LRM and the CD-ROM are both copyright material, and vigorously protected by the IEEE. This project is not intended for public distribution and access is therefore protected.

1.The first part of the project was to find/eliminate the errors in the CD-ROM version of VHDL-93 LRM (these have been found and corrected).

2.The second part was to link the LRM with the text (this is complete, see the index of chapters in HTML format)

3.The third part is to merge educational material developed by the US Department of Defence (DoD) DARPA sponsored RASSP project with the LRM and ASICs... the book. Without the support of the IEEE or DARPA, and with no easy resolution to copyright problems, it is currently impossible to complete this project.

LRM Table of Contents

LRM Section 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14

LRM Annex A B C D E

LRM Index

Some notes for people working on and with this project material

References to the IEEE LRM in my HTML pages are of the form:

<A HREF="../LRM/HTML/1076_2.HTM#2.2">93LRM2.2]</A>

to turn these off (so that people cannot access the LRM, for example) you need to insert comment tags around the HTML reference tags:

<!----> and <!---->

Search and replace for HTML (grep format for BBEdit)

search for: </PRE>/r<PRE CLASS="Computer[a-zA-z]+"><A NAME="[^"]+"> </A>

replace with: null

search for: (<PRE CLASS="Computer[^"]+">)<A NAME="[^"]+"> </A>

replace with: \1

search for: </B>/r replace with: </B>

search for: <TABLE>

replace with: <TABLE BORDER="1" CELLSPACING="2" CELLPADDING="2">

search for: <SUB CLASS="Subscript"> replace with: <SUB>

search for: <P CLASS="Symbol">([a-zA-z])</P> replace with: <FONT FACE="symbol">\1</FONT>

search for: <P CLASS="Symbol">¥</P>

replace with: <FONT FACE="symbol">¥</FONT>

Some of the material in this website is protected using access control.

The IEEE VHDL LRM material on which the LRM project is based is copyright and therefore access is protected with the following .htaccess file:

<Limit GET> order deny,allow deny from all

allow from .eng.hawaii.edu allow from 128.171.61 </Limit>

Web-page access control

In order to control access to Web pages, NCSA and Apache servers (and many others) look for a file named .htaccess in each directory along the path to a Web page. The lowest level .htaccess file (i.e. that closest to the Web page) determines access. There are two styles of access control.

Domain-name based access control

The first and simplest type of access control restricts access to machines which have a hostname that match a pattern. For example placing these lines in a file named .htaccess in a directory

Options All

<Limit GET> order deny,allow deny from all allow from .edu </Limit>

restricts access to that directory to those hostnames whose domain names end in

.edu.

Password-based access control

To implement password access control, an .htaccess file looks like this

Options All AuthType Basic AuthName [message] AuthUserFile .passwd <Limit GET>

require valid-user </Limit>

You need a copy of the htpasswd program to establish user names and assign passwords.

The message in the square brackets is a text string that will be displayed to the user when they are prompted for the password. The password file does not have to located in the same directory as the .htaccess file.

For more information, see the NCSA HTTPd access configuration documentation.

Errors in IEEE VHDL CD-ROM

Document titles

The documents all have titles:

VHDL LRMIntroduction

(sometimes this is repeated multiple times) except 1076_TOC.HTM which has the title:

1076 -- Table of Contents

Broken links

20 missing or broken links (from Adobe PageMill 2.0):

Broken links:

Problem: In 3.1.4 and 3.1.4.1 (see below) there are four bad links attached to

the number '1.0'.

Fix: remove the links.

3.1.4 Floating point types

...

An implementation may restrict the bounds of the range constraint of floating point types other than type universal_real. However, an implementation must allow the declaration of any floating point type whose range is wholly contained within the bounds - 1.0 E38 and + 1.0 E38 inclusive. The representation of floating point types must include a minimum of six decimal digits of precision.

NOTE--An implementation is not required to detect errors in the execution of a predefined floating point arithmetic operation, since the detection of overflow conditions resulting from such operations may not be easily accomplished on many host systems.

3.1.4.1 Predefined floating point types

The only predefined floating point type is the type REAL. The range of REAL is host-dependent, but it is guaranteed to include the range - 1.0 E38 to + 1.0 E38 inclusive. It is defined with an ascending range.

Problem: Bad link <A HREF="1076_14.HTM#PED_NUM_SUBT"> in Index (1076_INA.HTM)

Fix: change to <A HREF="1076_14.HTM#14.2">

Note: Reference to object is quite far into Section 14.2. It would be better to add another anchor, but this is the simplext fix.

Problem: Bad link <A HREF="1076_14.HTM#14.1:NOTES"> in Index (1076_INA.HTM)

Fix: Line 2189 in 1076_14.HTM change

NOTES

to

<A NAME="14.1:NOTES"></A>NOTES

Problem: Line 1670 in Index (1076_INA.HTM) <A

HREF="1076_14.HTM#S'OUIET">

Fix: change to <A HREF="1076_14.HTM#S'QUIET">

Problem: bad link in Index (1076_INA.HTM) <A

HREF="1076_8.HTM#8.1.3">

Fix: change to <A HREF="1076_8.HTM#8.13">

Problem: bad link in Index (1076_INA.HTM) <A HREF="1076_AXA.HTM#BIT_STRING_LITERAL">

Fix: change to <A HREF="1076_AXA.HTM#bit_string_literal">

Problem: bad link in Index (1076_INA.HTM) <A

HREF="1076_AXA.HTM#BIT_VALUE">

Fix: change to <A HREF="1076_AXA.HTM#bit_value">

Problem: multiple bad links in Index (1076_INA.HTM) <A HREF="1076_AXC.HTM#ANNEXC">

Fix: change all to <A HREF="1076_AXC.HTM#AnnexC">

Problem: bad link in Index (1076_INA.HTM) <A

HREF="1076_AXC.HTM#ANNEX C">

Fix: change to <A HREF="1076_AXC.HTM#AnnexC">

Problem: multiple bad links in Index (1076_INA.HTM) <A HREF="1076_AXE.HTM#ANNEX E">

Fix: change all to <A HREF="1076_AXE.HTM#Annex E">

Problem: bad link in Index (1076_INA.HTM) <A

HREF="1076_AXE.HTM#ANNEX E">

Fix: change to <A HREF="1076_AXE.HTM#Annex E">

Problem: bad link in Index (1076_INA.HTM) <A

HREF="#./1076_0.HTM0.2.3">

Fix: change to <A HREF="1076_0.HTM#0.2.3">

Problem: bad link in Index (1076_INA.HTM) <A HREF="#12.3.1.1">

Fix: change to <A HREF="1076_12.HTM#12.3.1.1">

Problem: bad link in Index (1076_INA.HTM) <A HREF="#12.6.2">

Fix: change to <A HREF="1076_12.HTM#12.6.2">

Problem: bad link in Index (1076_INA.HTM) <A HREF="#4.3.1.3">

Fix: change to <A HREF="1076_4.HTM#4.3.1.3">

Problem: in 1076_9.HTM (see <A HREF="1076_2.HTM#2.6.4">2.6.4

Fix: change to (see <A HREF="1076_12.HTM#12.6.4">12.6.4

Problem: in 1076_AXD.HTM <A HREF="1076_4.HTM#4.3.4">4.3.4

</A>

Fix: change to 4.3.4

Note: There is a Section 4.3.4 Alias Declaration in 1076-87 there is no Section 4.3.4 in 1076-93. There is a Section 4.3.3 Alias declarations in 1076-93.

Problem: in 1076_AXB.HTM <A HREF="1076_7.HTM#7.5.2">7.5.2

Fix: change to <A HREF="1076_7.HTM#7.4.2">7.4.2

Note: There is no Section 7.5.2. Section 7.4.2 Globally static primaries parts g and h deal with aggregates.

Problem: in 1076_2.HTM <A HREF="1076_8.HTM#8.1.4">8.1.4

Fix: Until I can find out what this is supposed to be, I'll leave it alone.

Note: There is no Section 8.1.4.

Problem: in 1076_AXD.HTM <A HREF="1076_8.HTM#8.3.1">8.3.1

</A>

Fix: change to 8.3.1

Note: There is no Section 8.3.1 in 1076-93. There is a Section 8.3.1 Updating a Projected Output Waveform in 1076-87.

Error in formatting and content in Section 8.

What it currently looks like:

What it should look like:

Minor errors in formatting and content in the Index

Соседние файлы в папке Для магистратуры