/* C level program file="high.C" Jonathan W. Valvano */ int highGlobal; extern int lowGlobal; // typed here but defined in low.s asm(".include 'low.s' "); // insert assembly here void main(void){ lowSub(5); // call to assemble routine lowGlobal=6; // access of assembly global }; int highSub(int input){return(input++);}