aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/std/textio_body.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2014-12-03 03:08:23 +0100
committerTristan Gingold <tgingold@free.fr>2014-12-03 03:08:23 +0100
commitd0be4f8e5157e751f4e450402ac47b5c69ea35be (patch)
tree0177f456a2584b7cb0ed2e46a8e18d83094f3ccd /libraries/std/textio_body.vhdl
parentd10afd56d89ca9654e22de141496bf06ceeaa2f4 (diff)
downloadghdl-d0be4f8e5157e751f4e450402ac47b5c69ea35be.tar.gz
ghdl-d0be4f8e5157e751f4e450402ac47b5c69ea35be.tar.bz2
ghdl-d0be4f8e5157e751f4e450402ac47b5c69ea35be.zip
fix VHDL 08 preprocessor block comments in libraries to start in column 1
Diffstat (limited to 'libraries/std/textio_body.vhdl')
-rw-r--r--libraries/std/textio_body.vhdl14
1 files changed, 7 insertions, 7 deletions
diff --git a/libraries/std/textio_body.vhdl b/libraries/std/textio_body.vhdl
index 5d148cef4..bb4ea8c8a 100644
--- a/libraries/std/textio_body.vhdl
+++ b/libraries/std/textio_body.vhdl
@@ -17,7 +17,7 @@
-- 02111-1307, USA.
package body textio is
- --START-V08
+--START-V08
-- LRM08 16.4
-- The JUSTIFY operation formats a string value within a field that is at
-- least at long as required to contain the value. Parameter FIELD
@@ -49,7 +49,7 @@ package body textio is
end case;
end if;
end Justify;
- --END-V08
+--END-V08
-- output routines for standard types
@@ -102,7 +102,7 @@ package body textio is
end if;
end writeline;
- --START-V08
+--START-V08
procedure Tee (file f : Text; L : inout LINE) is
begin
if l = null then
@@ -122,7 +122,7 @@ package body textio is
l := new string'("");
end if;
end Tee;
- --END-V08
+--END-V08
procedure write
(l: inout line; value: in string;
@@ -482,7 +482,7 @@ package body textio is
write (l, str (1 to pos - 1), justified, field);
end write;
- --START-V08
+--START-V08
procedure Owrite (L : inout line; value : in Bit_Vector;
Justified : in Side := Right; Field : in Width := 0) is
begin
@@ -1410,7 +1410,7 @@ package body textio is
severity failure;
end read;
- --START-V08
+--START-V08
procedure Sread (L : inout Line; Value : out String; Strlen : out Natural)
is
constant maxlen : natural := Value'Length;
@@ -1682,5 +1682,5 @@ package body textio is
report "hexa bit_vector read failure"
severity failure;
end Hread;
- --END-V08
+--END-V08
end textio;