RedPanda-CPP/platform/windows/templates/sdcc-mcs51/main.c

7 lines
60 B
C
Raw Normal View History

2023-08-17 19:24:49 +08:00
#include <8051.h>
void main(void) {
for(;;) {
P1--;
}
}