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

📄 myprog1.asm

📁 使用汇编语言对TMS320C2812进行编程的一个简单的工程模板。
💻 ASM
字号:
;*****************************************************************************/
;*                                                                           */
;* FILENAME                                                                  */
;*   myprog1.asm                                                             */
;*                                                                           */
;* DESCRIPTION                                                               */
;*   TMS320C2812 DSK.                                                        */
;*   A simple C-callable assembly language function.                         */
;*   In the C code simply write "my_asm_function();"                         */
;*                                                                           */
;* REVISION                                                                  */
;*   Revision: 1.00                                                          */
;*   Author  : Richard Sikora                                                */
;*---------------------------------------------------------------------------*/
;*                                                                           */
;* HISTORY                                                                   */
;*   Revision: 1.00                                                          */
;*   8th June 2004. Created by Richard Sikora.                               */
;*                                                                           */
;*****************************************************************************/

	.global	_my_asm_function   ; Function available to other functions

	.sect	".text"            ; Program goes in code space 

_my_asm_function:                  ; Leading underscore indicates C function.  

				   ; PUT YOUR CODE HERE!	

	LRETR			   ; Return to calling function


;*****************************************************************************/
;* End of myprog1.asm                                                        */
;*****************************************************************************/

⌨️ 快捷键说明

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