$compact rom optimize(3) auto_boot:do; /* **************************************************************************** * * * INTEL CORPORATION PROPRIETARY INFORMATION * * * * This software is supplied under the terms of a license agreement * * or non disclosure agreement with Intel Corporation and may not be * * copied nor disclosed except in accordance with the terms of that * * agreement. * * * **************************************************************************** */ init_controller:procedure external; end init_controller; boot_consumer:procedure(cc) word external; declare cc word; end boot_consumer; /*********************************************************************** THE MAIN PROGRAM, TO BE WRITTEN BY USER ***********************************************************************/ declare status byte; disable; CALL INIT_CONTROLLER; do while 1; status = boot_consumer(0); end; end auto_boot;