📄 myprog1.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 + -