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

📄 system_init.asm

📁 基于dsp的da输出程序
💻 ASM
字号:
*********************************************************************************
*  system_init.ASM	v1.00								                            *
*  版权(c) 	2003-		北京合众达电子技术有限责任公司			                *
*  设计者:	戴展波								                                *
*********************************************************************************
		.file	"system_init.asm"
		.c_mode
		.copy	"vc5402.inc"
		
		.ref	IV_RESET
		
		.def	_init_system
		
		.text

	
*****************************************************************************
*	函数:	_init_system
*	说明:	初始化系统
*	输入:	无
*	输出:	无
*	参数:	无
*****************************************************************************

_init_system:

	ANDM 	#00h,*(IMR)
	ANDM 	#01fh,*(PMST)
	ORM	#IV_RESET,*(PMST)
	
	.if	__far_mode
	FRET
	.else
	RET
	.endif
	
	.end
	

⌨️ 快捷键说明

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