winnie 发表于 2009-3-28 16:03:54

破解

Linking:
Command line: "C:\HT-PIC\BIN\PICC.EXE -MPLAB -16F877 -oA.HEX A.OBJ "
HI-TECH PICC COMPILER (Microchip PIC) V8.02 PL1
Copyright (C) 1984-2003 HI-TECH SOFTWARE
Compiler operating in demo mode.
Some command line options are disabled and compilation is delayed.
Register this compiler to enable these options.
Memory Usage Map:
Program ROM   $0000 - $0007$0008 (   8) words
Program ROM   $07F4 - $07FF$000C (    12) words
                           $0014 (    20) words total Program ROM

Program statistics:
Total ROM used       20 words (0.2%)
Total RAM used      0 bytes (0.0%)

Build completed successfully.
编译的程序
#include <pic.h>
main()
{

TRISC=0X00;/*TRISC寄存器被赋值,PORTC每一位都为输出*/
while(1);/*循环执行点亮发光二极管的语句*/
{
PORTC=0XF0;/*向PORTC送数据,点亮LED(由实验模板*/
   /*的设计决定相应位置低时LED点亮)。*/
}
}
页: [1]
查看完整版本: 破解