📄 myfunc.lst
字号:
C51 COMPILER V7.07 MYFUNC 04/20/2004 18:04:41 PAGE 1
C51 COMPILER V7.07, COMPILATION OF MODULE MYFUNC
OBJECT MODULE PLACED IN .\out\myfunc.obj
COMPILER INVOKED BY: F:\Keil\C51\BIN\C51.EXE src\myfunc.c BROWSE DEBUG OBJECTEXTEND PRINT(.\lst\myfunc.lst) OBJECT(.\out
-\myfunc.obj)
stmt level source
1 /*
2 * Copyright (C) 2002 by TechiZ. All rights reserved.
3 *
4 * This program was written in Korean(Comment and some more).
5 *
6 * This program was developed by TechiZ(The Company name).
7 * TechiZ want to share this program with you who loves the 8051 & the TCP/IP.
8 *
9 * You MUST DOWNLOAD THIS CODE from TechiZ Homepage.
10 * You DO NOT USE THIS CODE FOR COMMERCIAL PURPOSE.
11 * This code is ONLY FREE FOR THE STUDY.
12 * If you want more, send me E-mail.
13 *
14 * E-mail: techiz@techiz.com
15 * ( Subject is : [T89C51RD2 & TinyTCP] bla~ bla bla.... )
16 *
17 * Homepage: http://www.techiz.com
18 *
19 * You DO NOT DELETE THIS COPYRIGHT MESSAGE IN THE USING OF THIS CODE.
20 *
21 * In the using of this code, TechiZ does NOT GUARANTEE ABOUT WORKING WITHOUT ERROR.
22 */
23
24 /* *src甫 numbytes父怒 *dest栏肺 墨乔茄促. */
25
26 void Move( unsigned char *src, unsigned char *dest, unsigned int numbytes )
27 {
28 1 if ( numbytes <= 0 )
29 1 return;
30 1 if ( src < dest ) {
31 2 src += numbytes;
32 2 dest += numbytes;
33 2 do {
34 3 *--dest = *--src;
35 3 } while ( --numbytes > 0 );
36 2 } else {
37 2 do {
38 3 *dest++ = *src++;
39 3 } while ( --numbytes > 0 );
40 2 }
41 1 }
42
43
MODULE INFORMATION: STATIC OVERLAYABLE
CODE SIZE = 171 ----
CONSTANT SIZE = ---- ----
XDATA SIZE = ---- ----
PDATA SIZE = ---- ----
DATA SIZE = ---- 8
IDATA SIZE = ---- ----
BIT SIZE = ---- ----
END OF MODULE INFORMATION.
C51 COMPILER V7.07 MYFUNC 04/20/2004 18:04:41 PAGE 2
C51 COMPILATION COMPLETE. 0 WARNING(S), 0 ERROR(S)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -