📄 debug.lst
字号:
C51 COMPILER V8.05a DEBUG 03/27/2008 20:12:20 PAGE 1
C51 COMPILER V8.05a, COMPILATION OF MODULE DEBUG
OBJECT MODULE PLACED IN debug.OBJ
COMPILER INVOKED BY: d:\Keil\C51\BIN\C51.EXE debug.c BROWSE DEBUG OBJECTEXTEND
line level source
1
2 /********************************************************************
3 *
4 * 模 块 名:调试
5 *
6 * 创 建 人:yingjiangan 日期:2008-03-20
7 * 修 改 人: 日期:2000-00-00
8 * 功能描述:
9 * 其他说明:
10 * 版 本:V1.0
11 **********************************************************************/
12
13
14 /************头文件************/
15 #include <intrins.h>
16 #include <sm5964.h>
17 #include "my_type.h"
18 #include "debug.h"
19 #include "uart.h"
20 #include "6961.h"
21
22 void try(void)
23 {
24 1 uint8 i;
25 1 uint8 r_data;
26 1 while(1)
27 1 {
28 2
29 2 Write_6961_cmd(0x42);
30 2
31 2 r_data=0x00;
32 2
33 2 i=Read_6961();
34 2
35 2 UartPutChar(1);
36 2 UartPutChar(i);
37 2
38 2 i=Read_6961();
39 2
40 2 UartPutChar(2);
41 2 UartPutChar(i);
42 2
43 2
44 2 i=Read_6961();
45 2
46 2 UartPutChar(3);
47 2 UartPutChar(i);
48 2
49 2 i=Read_6961();
50 2
51 2 UartPutChar(4);
52 2 UartPutChar(i);
53 2
54 2 i=Read_6961();
55 2
C51 COMPILER V8.05a DEBUG 03/27/2008 20:12:20 PAGE 2
56 2 UartPutChar(5);
57 2 UartPutChar(i);
58 2
59 2
60 2
61 2
62 2
63 2
64 2
65 2
66 2 /*
67 2 dsplay_dat[0]=A_DSP;
68 2 dsplay_dat[1]=B_DSP;
69 2 dsplay_dat[2]=C_DSP;
70 2 dsplay_dat[3]=D_DSP;
71 2 dsplay_dat[4]=E_DSP;
72 2 dsplay_dat[5]=F_DSP;
73 2
74 2 dsplay_dot[0]=1;
75 2 dsplay_dot[1]=1;
76 2 dsplay_dot[2]=1;
77 2 dsplay_dot[3]=1;
78 2 dsplay_dot[4]=1;
79 2 dsplay_dot[5]=1;
80 2
81 2 Dsplay();
82 2 */
83 2 }
84 1
85 1 }
MODULE INFORMATION: STATIC OVERLAYABLE
CODE SIZE = 85 ----
CONSTANT SIZE = ---- ----
XDATA SIZE = ---- ----
PDATA SIZE = ---- ----
DATA SIZE = ---- 2
IDATA SIZE = ---- ----
BIT SIZE = ---- ----
END OF MODULE INFORMATION.
C51 COMPILATION COMPLETE. 0 WARNING(S), 0 ERROR(S)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -