psocconfig.asm

来自「用VC编辑的一个MD5算法」· 汇编 代码 · 共 48 行

ASM
48
字号
;
;  PSoCConfig.asm
;
;  Version 0.84
;  Data: 19 December, 2000
;  Copyright Cypress MicroSystems 2000
;
;  This file is generated by the Device Editor on Application Generation.
;  It contains code which loads the configuration data table generated in
;  the file PSoCConfigTBL.asm
;  
;  DO NOT EDIT THIS FILE MANUALLY, AS IT IS OVERWRITTEN!!!
;  Edits to this file will not be preserved.
;

export LoadConfigInit
export _LoadConfigInit
export LoadConfig_dds
export _LoadConfig_dds

export NO_SHADOW
export _NO_SHADOW

FLAG_CFG_MASK:		equ	10h			;M8C flag register REG address bit mask
END_CONFIG_TABLE:	equ	ffh			;end of config table indicator	

AREA psoc_config(rom, rel)

_LoadConfigInit:
 LoadConfigInit:
	
	call	LoadConfig_dds

	ret

;
; Load Configuration dds
;
_LoadConfig_dds:
 LoadConfig_dds:
	call	LoadConfigTBL_dds			;call load config table routine
	ret



NO_SHADOW:
_NO_SHADOW:

⌨️ 快捷键说明

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