/* dac.c */ #include #define U_BEG 102 #define U_END 153 main() { P1 = U_BEG; for (;;) { P1++; if (P1==U_END) P1=U_BEG; } }