aboutsummaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
authorumarcor <unai.martinezcorral@ehu.eus>2021-01-16 08:32:32 +0100
committertgingold <tgingold@users.noreply.github.com>2021-01-16 13:53:13 +0100
commit173171d2b31111452446c6ee3e4ee21768cf41cf (patch)
tree0f1c7fec99ba245f092a10617928d2f197e5e2aa /libraries
parentc5f708d059b1cbb269ca11aa3375264c90408ba9 (diff)
downloadghdl-173171d2b31111452446c6ee3e4ee21768cf41cf.tar.gz
ghdl-173171d2b31111452446c6ee3e4ee21768cf41cf.tar.bz2
ghdl-173171d2b31111452446c6ee3e4ee21768cf41cf.zip
libraries: remove outdated README
Diffstat (limited to 'libraries')
-rw-r--r--libraries/README27
1 files changed, 0 insertions, 27 deletions
diff --git a/libraries/README b/libraries/README
deleted file mode 100644
index d569a25a1..000000000
--- a/libraries/README
+++ /dev/null
@@ -1,27 +0,0 @@
-VHDL libraries.
----------------
-
-* Filename convention:
-
-For a package XXXX, the file containing the declaration must be named XXXX.vhdl
-and the file containing the body must be named XXXX-body.vhdl
-
-Note: this is not completly followed!
-
-
-* Using Vhdl-87 or Vhdl-93:
-
-Lines that must be compiled only for vhdl-87 must have a --V87 comment at the
-end, lines for vhdl-93 must a a --V93 comment.
-Example:
- procedure readline (variable f: in text; l: out line) --V87
- procedure readline (file f: text; l: out line) --V93
-For group of lines that must be compiled only for vhdl-93 (such as xnor
-functions), use this:
- --START-V93
- ...[lines to compile only with vhdl-93]...
- --END-V93
-Makefile rules create .v87 and .v93 files from .vhdl files, and compile them
-with the correct version.
-
-# Copyright (C) 2002, 2003, 2004, 2005 Tristan Gingold