standard_textio_additions.vhdl -- Additions to the package "std.textio"
Use model:
use ieee_proposed.standard_textio_additions.all;
Dependencies:
use std.textio;
use ieee_proposed.standard_additions;
- tee - Echos the string to BOTH the file and the screen
- SREAD and SWRITE - String read and write routines
(so you no longer
need to do write (L, string'("ABCEDFG"));
- HREAD and HWRITE (Hex read and write) for bit_vector
- OREAD and OWRITE (octal read and write) for bit_vector
- BREAD and BWRITE (binary read and write, same as "READ" and "WRITE" for
bit_vector
- justify - Justify a string left or right with a width.
Example:
justify ("ABCD", left, 6); will result in "ABCD  "
Please send feedback to David W. Bishop
dbishop@vhdl.org.