gui_string.asm

来自「该代码是用vc编写的基于dsp2812电机控制的代码」· 汇编 代码 · 共 36 行

ASM
36
字号

*******************************************************************************
*  Copyright 2003 by Special Electronic Equipment and Device.
*  All rights reserved. Property of Special Electronic Equipment and Device.
*  Restricted rights to use, duplicate or disclose this code are
******************************************************************************
*  Copyright 2004 by SEED Electronic Technology LTD.                         *
*  All rights reserved. SEED Electronic Technology LTD.                      *
*  Restricted rights to use, duplicate or disclose this code are             *
*  granted through contract.                                                 *
*                                                                            *
*  MODULE NAME... Mcbsp											             *
*  FILENAME...... comunication.c   										     *
*  DESCRIPTION:  															 *
*  This is an fuction which is just for comunication                         *	
*                                                                            *
*  作者:黄林生                                                               *
*  版本:1.0                                                                  *
*  日期:06.10.24                                                             *
******************************************************************************
	.file	"gui_string.asm"
        
        .def	_strNull			
        .def  	_strEdit		
        .def	_strOpition			
        .def  	_strNodeYes	   		
        .def  	_strNodeNo
        		
	    .sect	".sconst"
_strNull:			    .pstring   0x00,0x00
_strEdit: 	    			.pstring "请输入数据"	,0x00,0x00
_strOpition: 	    		.pstring "是否退出"	,0x00,0x00
_strNodeYes: 	    	    .pstring "是"	,0x00,0x00
_strNodeNo: 	    	    .pstring "否"	,0x00,0x00

		.end

⌨️ 快捷键说明

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