aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/std
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-06-28 19:33:36 +0200
committerTristan Gingold <tgingold@free.fr>2022-06-28 19:33:36 +0200
commit1b1d517fba9e9ed7656f74e036c817cf84b622e2 (patch)
treeec819ddfe7580f4153c4208464848a8b23d2cb06 /libraries/std
parent6a9d99747a94c03a67a82bbca08982e1116446a4 (diff)
downloadghdl-1b1d517fba9e9ed7656f74e036c817cf84b622e2.tar.gz
ghdl-1b1d517fba9e9ed7656f74e036c817cf84b622e2.tar.bz2
ghdl-1b1d517fba9e9ed7656f74e036c817cf84b622e2.zip
libraries/textio-body.vhdl: use false/true for boolean write.
Fix #2115
Diffstat (limited to 'libraries/std')
-rw-r--r--libraries/std/textio-body.vhdl6
1 files changed, 4 insertions, 2 deletions
diff --git a/libraries/std/textio-body.vhdl b/libraries/std/textio-body.vhdl
index 8ea3dc789..dcef308a7 100644
--- a/libraries/std/textio-body.vhdl
+++ b/libraries/std/textio-body.vhdl
@@ -193,9 +193,11 @@ package body textio is
is
begin
if value then
- write (l, string'("TRUE"), justified, field);
+ write (l, string'("TRUE"), justified, field); --!V08
+ write (l, string'("true"), justified, field); --V08
else
- write (l, string'("FALSE"), justified, field);
+ write (l, string'("FALSE"), justified, field); --!V08
+ write (l, string'("false"), justified, field); --V08
end if;
end write;