c-cast.s

来自「一个编译器的例子,基于c语言,在linux下开发 现在了简单的c语言例子」· S 代码 · 共 53 行

S
53
字号
				# start of the file.include "defines.h"		# system call numbers.include "c-cast.literals"	# include the string literal file	.global _start		.bss	.align	4_data:.text	.align	4_start:	pushl %ebp		# save the ebp address	movl %esp, %ebp	subl $8, %esp		# allocate space for local variables	movl $10, -4(%ebp)	pushl %eax	popl %eax	movl $1085276160, -8(%ebp)	pushl %eax	popl %eax	leal -8(%ebp), %eax	pushl %eax	pushl -4(%ebp)	pushl -8(%ebp)	pushl $2				# arithmetic calculate	fildl (%esp)	flds 4(%esp)	fmulp %st, %st(1)	fstps 4(%esp)	addl $4, %esp				# arithmetic calculate	flds (%esp)	fildl 4(%esp)	faddp %st, %st(1)	fstps 4(%esp)	addl $4, %esp	popl %ebx	popl %eax	movl %ebx, (%eax)	pushl (%eax)	popl %eax	flds -8(%ebp)	call fshow	call newline	pushl $0	popl %eax		# save the return value in eax	movl %ebp, %esp	popl %ebp		# restore the ebp address	movl $SYS_exit,%eax	# load the exit call number	movl $0,%ebx		# load the exit code	int $0x80		# and exit!				# end of the file

⌨️ 快捷键说明

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