vectors.asm

来自「DSP-Applications-Using-C-and-the-TMS320C」· 汇编 代码 · 共 14 行

ASM
14
字号
*Vectors.asm Vector file for non-interrupt driven program       
        
     .title 	"vectors.asm"
     .ref 		_c_int00		;reference entry address
     .sect 		"vectors"		;in vector section
rst: mvkl	.s2	_c_int00,b0		;lower 16 bits --> b0
     mvkh	.s2 	_c_int00,b0		;higher 16 bits --> b0
     b	.s2	b0			;branch to entry address
     nop					;5 NOPs for rest of fetch packet		
     nop
     nop
     nop
     nop
     

⌨️ 快捷键说明

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