asmsrc1.s

来自「lwip在ucos上的移植」· S 代码 · 共 38 行

S
38
字号
	.include "common.inc"	.include "arch.inc"comment "main routine for assembly source debugging test"comment "This particular testcase uses macros in <arch>.inc to achieve"comment "machine independence.  This file must be compiled with -Darch=foo."comment "WARNING: asm-source.exp checks for line numbers printed by gdb,"comment "therefore be careful about changing this file without also changing"comment "asm-source.exp."	.global mainmain:	entercomment "Call a macro that consists of several lines of assembler code."	several_nopscomment "Call a subroutine in another file."	call foo2comment "All done."	exit0comment "A routine for foo2 to call."	.global foo3foo3:	enter	leave	.global exitexit:	exit0

⌨️ 快捷键说明

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