diff options
Diffstat (limited to 'libraries/std/textio-body.vhdl')
-rw-r--r-- | libraries/std/textio-body.vhdl | 6 |
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; |