IC解密STC15单片机框架
| IC解密#include <STC15.H> IC解密#include <intrins.h> IC解密#define ui unsigned int IC解密#define uc unsigned char /*==================L*/ // IO口定义 /*==================L*/ // 全局变量 /*==================n*/ // 函数定义 void delay(ui t) { ui i, j; for (i = 0; i < t; i++) for (j = 0; j < 120; j++); } void init(); /*==================2*/ void main() { // 主函数 P0M0 = 0x00; P0M1 = 0x00; P1M0 = 0x00; P1M1 = 0x00; P2M0 = 0x00; P2M1 = 0x00; P3M0 = 0x00; P3M1 = 0x00; P4M0 = 0x00; P4M1 = 0x00; P5M0 = 0x00; P5M1 = 0x00; P6M0 = 0x00; P6M1 = 0x00; P7M0 = 0x00; P7M1 = 0x00; init(); // 初始化 while (1) { } } void init() { } |

芯片解密