The following code does not build. Please select the reason…
The following code does not build. Please select the reason why. program program1; #include( “stdlib.hhf” ); static i : int8; j : int8; begin program1; stdout.put( “gimme i:” ); stdin.get( i ); stdout.put( “gimme j:” ); stdin.get( j ); TestingCode: cmp( i, j ); je EndingCode; jmp TheyAreNotEqual; TheyAreNotEqual: stdout.put( “i and j were not equal!”, nl ); EndingCode: stdout.put( “Done!”, nl ); end program1;