variable.lst

来自「atmel at89c51snd1c mp3芯片方案源码」· LST 代码 · 共 57 行

LST
57
字号
C51 COMPILER V7.50   VARIABLE                                                              02/16/2009 09:59:51 PAGE 1   


C51 COMPILER V7.50, COMPILATION OF MODULE VARIABLE
OBJECT MODULE PLACED IN variable.OBJ
COMPILER INVOKED BY: d:\Keil\C51\BIN\C51.EXE variable.c LARGE BROWSE DEBUG OBJECTEXTEND

line level    source

   1          #include "config.h"                         /* system definition */
   2          
   3          
   4          data    Byte    gl_cpt_tick;            /* general tick counter */
   5          //bdata   bit     gl_key_repeat;          /* set to TRUE if a key is repeated */
   6          bdata   bit     gl_key_press;           /* set to TRUE if a key is decoded */
   7          Byte    gl_key;                 /* value of the key pressed */
   8          pdata   Byte    gl_buffer[GL_BUF_SIZE];
   9          data    Byte    gl_pointer;
  10          idata   Byte    play_pause;
  11          idata   Byte    bass_nobass;
  12          
  13          /*variables for media I/O function */
  14          xdata   Byte    gl_media_buffer[512]; 
  15          
  16          /* variables for SBC libraries */
  17          bit     gl_sbc_wr_protect;              /* mass storage write protected */
  18          bit     gl_sbc_wr_busy;                 /* mass storage write in progress */
  19          bit     gl_sbc_rd_busy;                 /* mass storage read in progress */
  20          
  21          /* const for SBC libraries */
  22          code    Byte    gl_sbc_vendor_id[8]   = SBC_VENDOR_ID;
  23          code    Byte    gl_sbc_product_id[16] = SBC_PRODUCT_ID;
  24          code    Byte    gl_sbc_revision_id[4] = SBC_REVISION_ID;
  25          
  26          /* Disk management  */
  27          bit     reserved_disk_space = FALSE;    /* reserved space for application on disk */
  28          Byte    gl_media_select;
  29          
  30          bit     led_flush;
  31          
  32          bdata   bit  disconnected;
  33          


MODULE INFORMATION:   STATIC OVERLAYABLE
   CODE SIZE        =   ----    ----
   CONSTANT SIZE    =     28    ----
   XDATA SIZE       =    514    ----
   PDATA SIZE       =     40    ----
   DATA SIZE        =      2    ----
   IDATA SIZE       =      2    ----
   BIT SIZE         =      7    ----
END OF MODULE INFORMATION.


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

⌨️ 快捷键说明

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