51单片机各类源程序集锦
源代码在线查看: mainloop.h
/*
//*************************************************************************
//
// ZLGMCU
// www.zlgmcu.com
// File Name: MAINLOOP.H
// Revision: V0.2(2002-04-08)
// Use library: USB51S.LIB
// Note: USB51S.LIB不带DMA控制功能
//*************************************************************************
*/
#ifndef __MAINLOOP_H__
#define __MAINLOOP_H__
sbit MCU_SWM0 = P1^0;
sbit MCU_SWM1 = P1^1;
sbit MCU_LED0 = P1^2;
sbit MCU_LED1 = P1^3;
extern void check_key_LED(void);
#endif