文件名称:单片机实验报告
文件大小:96KB
文件格式:DOC
更新时间:2011-06-21 01:10:30
单片机 实验
实验一实验板的功能和组成以及C51的编程环境和简单编程
实验内容
1 安装keilc51编程软件和easy51pro开发软件
2 keic51编程环境的熟悉,包括新建项目文件、c51文件、调试、编译和保存5-7种件。
3 完成对keilc51软件的环境设置以及对文件各种操作功能。
2 对以下程序进行调试。
例1:
#include
#include
#ifdef MONITOR51 /* Debugging with Monitor-51 needs */
char code reserve [3] _at_ 0x23; /* space for serial interrupt if */
#endif /* Stop Exection with Serial Intr. */
/* is enabled */
/*------------------------------------------------
The main C function. Program execution starts
here after stack initialization.
------------------------------------------------*/
void main (void) {
#ifndef MONITOR51
SCON = 0x50;
TMOD |= 0x20;
TH1 = 221;
TR1 = 1;
TI = 1;
#endif
while (1) {
printf ("Hello World\n");
}
}