The following code does not build. Please select the reason…
The following code does not build. Please select the reason why. program program2; #include( “stdlib.hhf” ); static i : int8; j : int8; begin program2; stdout.put( “gimme i:” ); stdin.get( i ); mov( i, BH ); stdout.put( “gimme j:” ); stdin.get( j ); mov( j, BL ); sub( BH, 1 ); add( BL, 1 ); stdout.put( “BH = “, BH, nl ); stdout.put( “BL = “, BL, nl ); end program2;