📄 var.asm
字号:
;--------------------------------------------------------------------------------------------------
; Filename : FLSHVAR.ASM
; Last Modified : 25 May 2001.
; Version : 1.0
; Originator : Texas Instruments, DSP Digital Control Systems Group.
;--------------------------------------------------------------------------------------------------
;--------------------------------------------------------------------------------------------------
; Description:
;
; This file contains the instantiations for the variables required in the flash
; programming algorithms for the TMS320LF240x.
;--------------------------------------------------------------------------------------------------
;--------------------------------------------------------------------------------------------------
; Symbols exported from this file
;-------------------------------------------------------------------------------
; Publish two symbols one without the '_' and one with the '_' so that the
; symbol is available to the C language calling functions as well as
; asm functions in a convenient form.
.globl flashAlgoVars
.globl _flashAlgoVars
;-------------------------------------------------------------------------------
; Import the flash variable structure definitions (and any other things in
; VAR.H
;-------------------------------------------------------------------------------
.include "..\include\var.h"
;-------------------------------------------------------------------------------
; Data sections generated by this file:
; The data variables instanced in this file are placed in a named section called
; .flshvar
;-------------------------------------------------------------------------------
flashAlgoVars .usect ".flshvar",flshvar_len,1
_flashAlgoVars .set flashAlgoVars
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -