delay.lst

来自「用PLC89C915开发的USB和外接电源充电器」· LST 代码 · 共 27 行

LST
27
字号
C51 COMPILER V7.50   DELAY                                                                 06/14/2008 11:20:45 PAGE 1   


C51 COMPILER V7.50, COMPILATION OF MODULE DELAY
OBJECT MODULE PLACED IN delay.OBJ
COMPILER INVOKED BY: C:\Keil\C51\BIN\C51.EXE delay.c BROWSE DEBUG OBJECTEXTEND

line level    source

   1          
   2           void delayms(uint z)
*** ERROR C141 IN LINE 2 OF DELAY.C: syntax error near 'z', expected ')'
   3           {
   4   1              uint x;
*** ERROR C141 IN LINE 4 OF DELAY.C: syntax error near 'x'
*** ERROR C202 IN LINE 4 OF DELAY.C: 'x': undefined identifier
   5   1              uchar y;
*** ERROR C202 IN LINE 5 OF DELAY.C: 'uchar': undefined identifier
*** ERROR C141 IN LINE 5 OF DELAY.C: syntax error near 'y'
   6   1              for(x=z;x>0;x--)
*** ERROR C202 IN LINE 6 OF DELAY.C: 'x': undefined identifier
   7   1                      for(y=20;y>0;y--);      
*** ERROR C202 IN LINE 7 OF DELAY.C: 'y': undefined identifier
   8   1       }

C51 COMPILATION COMPLETE.  0 WARNING(S),  7 ERROR(S)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?