📄 main.lst
字号:
C51 COMPILER V7.07 MAIN 04/04/2006 14:47:23 PAGE 1
C51 COMPILER V7.07, COMPILATION OF MODULE MAIN
OBJECT MODULE PLACED IN main.OBJ
COMPILER INVOKED BY: C:\Keil\C51\BIN\C51.EXE main.c LARGE OMF2 ROM(D16M) OPTIMIZE(9,SPEED) BROWSE NOINTVECTOR MODDP2 MOD
-DA VARBANKING DEBUG
stmt level source
1 /* ---------------------------------------------------------------------------
2 * Copyright (C) 2003 Dallas Semiconductor Corporation, All Rights Reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17 * IN NO EVENT SHALL DALLAS SEMICONDUCTOR BE LIABLE FOR ANY CLAIM, DAMAGES
18 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Except as contained in this notice, the name of Dallas Semiconductor
23 * shall not be used except as stated in the Dallas Semiconductor
24 * Branding Policy.
25 * ---------------------------------------------------------------------------
26 */
27
28 /*
29 * HelloWorld - template project for working in C with the DS80C400.
30 *
31 */
32 #include "rom400_init.h"
33 #include "rom400_task.h"
34 #include "rom400_util.h"
35
36 #include <stdio.h>
37
38
39 // leave 4000h bytes for function parameters
40 #define RAM_START 0x14000
41 #define RAM_END 0x5FFFF
42
43 extern void de_copy();
44
45 /*
46 * Main entry point. Initialize the ROM.
47 */
48 void main()
49 {
50 1 printf("starting to copy file \r\n");
51 1 de_copy();
52 1 while(1)
53 1 {
54 2 }
C51 COMPILER V7.07 MAIN 04/04/2006 14:47:23 PAGE 2
55 1 }
56
MODULE INFORMATION: STATIC OVERLAYABLE
CODE SIZE = 16 ----
CONSTANT SIZE = 25 ----
XDATA SIZE = ---- ----
PDATA SIZE = ---- ----
DATA SIZE = ---- ----
IDATA SIZE = ---- ----
BIT SIZE = ---- ----
EDATA SIZE = ---- ----
HDATA SIZE = ---- ----
XDATA CONST SIZE = ---- ----
FAR CONST SIZE = ---- ----
END OF MODULE INFORMATION.
C51 COMPILATION COMPLETE. 0 WARNING(S), 0 ERROR(S)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -