-- FILE: utility.ads -- DATE: 7/98 -- AUTHOR: Sy Wong -- MODIFIED BY: G. Levine 8/98 -- AIM: Specification for output.utilities with HDL; package UTILITY is procedure putb (s: boolean); procedure put (s: boolean); procedure putms1st (b: HDL.bus); -- left bit is most significant in a string of 1's and 0's. function str (b: HDL.bus) return string; end UTILITY;