/************************************************************************************ c1.comp Component declaration and invocation, including reprinting. Should display 1 output text field, with the hex value "ab". Check program.print to ensure reprints properly. ************************************************************************************/ component lit8( value ){ out result[ 8 ] } begin literal( 8, value ){ out result }; end component { in opd[ 8 ] } out8( name, x, y ) begin { in opd }output( name, x, y, 16, 8 ); end path opd[ 8 ]; lit8( 171 ){ out opd }; { in opd }out8( "ab", 10, 50 );