⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rf_var.lst

📁 合泰USB键盘程序
💻 LST
字号:
"File: RF_VAR.ASM    Holtek Cross-Assembler  Version 2.86      Page 1


   1  0000              ;******************************************************************
   2  0000              mainr_var		.section		'data'
   3  0000  00          bps2_usb		dbit
   4  0001              
   5  0001              public		bps2_usb
   6  0001              ;******************************************************************
   7  0000              comdata			.section  common	'data'
   8  0000              ;for main temp
   9  0000  00          temp1			db		?
  10  0001  00          temp2			db		?
  11  0002  00          temp3			db		?
  12  0003  00          temp4			db		?
  13  0004  00          temp5			db		?
  14  0005  00          temp6			db		?
  15  0006              
  16  0006              ;******************************************************************
  17  0000              data1			.section 		'data'
  18  0000              ;for int temp
  19  0000  00          int_temp1		db		?
  20  0001  00          int_temp2		db		?
  21  0002              
  22  0002              
  23  0002              ;for fifo access
  24  0002  00          fifo_sendlen	db		?
  25  0003              FIFO_out1		label	byte
  26  0003  00          FIFO_Type		db		?
  27  0004              FIFO_out2		label	byte
  28  0004  00          FIFO_Request	db		?
  29  0005              FIFO_out3		label	byte
  30  0005  00          FIFO_wValueL	db		?
  31  0006              FIFO_out4		label	byte
  32  0006  00          FIFO_wValueH	db		?
  33  0007              FIFO_out5		label	byte
  34  0007  00          FIFO_wIndexL	db		?
  35  0008              FIFO_out6		label	byte
  36  0008  00          FIFO_wIndexH	db		?
  37  0009              FIFO_out7		label	byte
  38  0009  00          FIFO_wLengthL	db		?
  39  000A              FIFO_out8		label	byte
  40  000A  00          FIFO_wLengthH	db		?
  41  000B              
  42  000B              
  43  000B              ;for usb system
  44  000B  00          wait_time		db		?				;for wakeup used
  45  000C  00          wait_time_h		db		?
  46  000D  00          stall			db		?
  47  000E  00          CMD_ADDR		db		?				;store the USB address
  48  000F  00          ReportKBTime	db		?				;store idle time of the KB
  49  0010  00          ReportMouseTime	db		?				;store idle time of the mouse
  50  0011  00          TempKBTime		db		?				;store the present time of KB after the last data out
  51  0012  00          TempmouseTime	db		?				;store the present time of mouse after the last data out
  52  0013  00          TempKBTime_L	db		?				;store the present time of KB after the last data out
  53  0014  00          TempmouseTime_L	db		?				;store the present time of mouse after the last data out
  54  0015  00          ReturnAddr		db		?				;the return address of the description
  55  0016              
  56  0016              ;AltkbSetting		db		?
  57  0016              ;altmousesetting	db		?
  58  0016  00          TableLength		db		?				;for description
  59  0017  00          lengthh			db		?
"File: RF_VAR.ASM    Holtek Cross-Assembler  Version 2.86      Page 2

  60  0018  00          lengthl			db		?
  61  0019  00          FIFO_TBLP		db		?
  62  001A  00          des_count		db		?
  63  001B              
  64  001B  00          bcmd_index		dbit
  65  001B              baddr_state		dbit
  66  001B              bRmtWakeup		dbit
  67  001B              brd_h_table		dbit
  68  001B              btime_out_KB	dbit
  69  001B              btime_out_ms	dbit
  70  001C              ;bwakeup_flag	dbit
  71  001B              bFLAG_RsqF		dbit
  72  001C              
  73  001B              bFLAG_SndFC		dbit
  74  001C  00          bFLAG_HvRpt		dbit
  75  001C              bFLAG_Setup		dbit
  76  001C              bFLAG_FIFO_REDY	dbit
  77  001C              bFLAG_AdrF		dbit
  78  001C              bsetup_flag		dbit
  79  001C              bAltkbProtocol	dbit
  80  001C              bAltmouseProtocol	dbit
  81  001D              
  82  001C              bcfgvalue		dbit
  83  001D  00          bhas_data_out_previous	dbit
  84  001D              bhas_data_out_previous1	dbit
  85  001D              bhas_data_out_previous2	dbit
  86  001D              breseume_s		dbit	
  87  001D              bwait_setup		dbit
  88  001D              bhas_len0		dbit
  89  001E              
  90  001E              
  91  001E              
  92  001E              
  93  001E              
  94  001E              
  95  001E              
  96  001E              
  97  001E              
  98  001E              
  99  001E              
 100  001E              
 101  001E              ;-------------------------------------------------------------------------------
 102  001E              
 103  001E              public			fifo_sendlen
 104  001E              public			FIFO_out1
 105  001E              public			FIFO_Type
 106  001E              public			FIFO_out2	
 107  001E              PUBLIC			FIFO_Request
 108  001E              public			FIFO_out3	
 109  001E              PUBLIC			FIFO_wValueL 
 110  001E              public			FIFO_out4	
 111  001E              PUBLIC			FIFO_wValueH	
 112  001E              public			FIFO_out5	
 113  001E              PUBLIC			FIFO_wIndexL 	
 114  001E              public			FIFO_out6	
 115  001E              PUBLIC			FIFO_wIndexH 	
 116  001E              public			FIFO_out7	
 117  001E              PUBLIC			FIFO_wLengthL	
 118  001E              public			FIFO_out8	
 119  001E              PUBLIC			FIFO_wLengthH	
"File: RF_VAR.ASM    Holtek Cross-Assembler  Version 2.86      Page 3

 120  001E              
 121  001E              
 122  001E              public			stall
 123  001E              public			CMD_ADDR
 124  001E              public			ReportKBTime
 125  001E              public			ReportMouseTime
 126  001E              public			TempKBTime
 127  001E              public			TempmouseTime
 128  001E              public			TempKBTime_L
 129  001E              public			TempmouseTime_L
 130  001E              public			ReturnAddr
 131  001E              ;public			AltkbSetting
 132  001E              ;public			AltmouseSetting
 133  001E              public			TableLength
 134  001E              public			lengthh
 135  001E              public			lengthl
 136  001E              public			FIFO_TBLP
 137  001E              public			des_count
 138  001E              
 139  001E              public			int_temp1
 140  001E              public			int_temp2
 141  001E              ;-----------------------------------------------------------------------------------
 142  001E              ;public			wait_time
 143  001E              ;public			wait_time_h
 144  001E              
 145  001E              
 146  001E              public			temp1
 147  001E              public			temp2
 148  001E              public			temp3
 149  001E              public			temp4
 150  001E              public			temp5
 151  001E              public			temp6
 152  001E              
 153  001E              
 154  001E              public			bcmd_index		
 155  001E              public			baddr_state		
 156  001E              
 157  001E              public			bRmtWakeup		
 158  001E              public			brd_h_table		
 159  001E              public			btime_out_KB	
 160  001E              ;public			bwakeup_flag	
 161  001E              
 162  001E              
 163  001E              public			bFLAG_RsqF		
 164  001E              public			bFLAG_SndFC		
 165  001E              public			bFLAG_HvRpt		
 166  001E              public			bFLAG_Setup
 167  001E              ;public			bFLAG_FIFO_REDY	
 168  001E              ;public			bFLAG_AdrF
 169  001E              public			bsetup_flag
 170  001E              public			bwait_setup
 171  001E              
 172  001E              
 173  001E              
 174  001E              public			bAltkbProtocol
 175  001E              public			bAltmouseProtocol
 176  001E              public			bcfgvalue
 177  001E              public			bhas_data_out_previous
 178  001E              public			bhas_data_out_previous1
 179  001E              public			bhas_data_out_previous2
"File: RF_VAR.ASM    Holtek Cross-Assembler  Version 2.86      Page 4

 180  001E              public			breseume_s
 181  001E              public			bhas_len0
 182  001E              
 183  001E              
 184  001E              
 185  001E              END


        0 Errors

⌨️ 快捷键说明

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