/* This C language subroutine executes the ADSP-21020 idle instruction. It does not return. The Run Time Library for the C Language. Gordon A. Sterling (617) 461 - 3076 DSP Development Tools Engineering Updated on 5/94 by AS #include <21020.h>
void idle(void); */ #include "lib_glob.h" #include "020_glob.h" .SEGMENT/CODE Code_Space_Name; .FILE RTL_FILENAME; .GLOBAL _idle; _idle: FETCH_RETURN idle_loop: IDLE; /*Sit and spin*/ restore_state: RETURN (DB); RESTORE_STACK RESTORE_FRAME .ENDSEG;