emrelocs1.s

来自「俄罗斯高人Mamaich的Pocket gcc编译器(运行在PocketPC上)」· S 代码 · 共 24 行

S
24
字号
# emrelocs1.s: some external symbols to be used in relocations.		.text		.p2align 4		# Pad things so addresses which are used for relocations		# are non-zero.  Zero simply isn't as much fun.		.word	0		.globl ext_fun		.ent ext_funext_fun:	.word	1		.end ext_fun		.sdata		.p2align 4		# Padding here, for same reason.		.word	0		.globl	ext_varext_var:	.word	2

⌨️ 快捷键说明

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