flash_var.s43

来自「TI三相电能表源程序」· S43 代码 · 共 32 行

S43
32
字号
; *****************************************************************************
; File:     flash_var.s43
; Autor:    Anton Muehlhofer, Texas Instruments Deutschland
; Date:     30. May 2000
; 
; defines 2 byte variables at a specific addresses in flash memory that can be
; accessed out of C as standard extern char variables (see "flashd.h"):
;
; extern unsigned char SegA_last;       /* absolute address 010FFh */
; extern unsigned char SegB_last;       /* abosluet address 0107Fh */
; *****************************************************************************

;============================================================================
; extern unsigned char SegA_last;       /* absolute address 010FFh */
;============================================================================
	NAME	flash_SegA_inactive
	ASEG	010FFh
	PUBLIC	SegA_last
SegA_last	DS 0
	ENDMOD

;============================================================================
; extern unsigned char SegB_last;       /* abosluet address 0107Fh */
;============================================================================
	NAME	flash_SegB_inactive
	ASEG	0107Fh
	PUBLIC	SegB_last
SegB_last	DS 0
	ENDMOD
	
	END

⌨️ 快捷键说明

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