📄 common.lst
字号:
C51 COMPILER V7.50 COMMON 07/03/2006 14:17:02 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE COMMON
OBJECT MODULE PLACED IN ..\..\OUTPUT\NTSC_SOUTH\Common.obj
COMPILER INVOKED BY: d:\Keil\C51\BIN\C51.EXE ..\..\KERNEL\Common.c OPTIMIZE(9,SIZE) BROWSE ORDER INCDIR(..\..\INC\;..\..
-\UI\NTSC_SOUTH\) DEFINE(PABLO,MCU_MTV412M,OLGA) DEBUG OBJECTEXTEND PRINT(..\..\OUTPUT\NTSC_SOUTH\Common.lst) OBJECT(..\.
-.\OUTPUT\NTSC_SOUTH\Common.obj)
line level source
1 /******************************************************************************
2 Copyright (c) 2003 MStar Semiconductor, Inc.
3 All rights reserved.
4
5 [Module Name]: Common.c
6 [Date]: 06-Nov-2003
7 [Comment]:
8 Common subroutines.
9 [Reversion History]:
10 *******************************************************************************/
11
12 #define _COMMON_C_
13
14 // System
15
16 // Common
17 #include "define.h"
18 #include "mcu.h"
19 #include "global.h"
20
21 // External
22 #include "board.h"
23
24 // Internal
25 #include "common.h"
26 #include "uart.h"
27
28 /////////////////////////////////////////
29 // delay 1 millisecond.
30 //
31 // Arguments: wValue - delay counter
32 /////////////////////////////////////////
33 void Delay1ms(WORD wValue)
34 {
35 1 WORD wCount; // loop counter
36 1
37 1 while (wValue--)
38 1 {
39 2 wCount = DELAY_1MS_PERIOD; // reset loop counter
40 2 while (wCount--) ;
41 2 } // while
42 1 }
43
MODULE INFORMATION: STATIC OVERLAYABLE
CODE SIZE = 27 ----
CONSTANT SIZE = ---- ----
XDATA SIZE = ---- ----
PDATA SIZE = ---- ----
DATA SIZE = ---- ----
IDATA SIZE = ---- ----
BIT SIZE = ---- ----
C51 COMPILER V7.50 COMMON 07/03/2006 14:17:02 PAGE 2
END OF MODULE INFORMATION.
C51 COMPILATION COMPLETE. 0 WARNING(S), 0 ERROR(S)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -