⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mytest.asm

📁 c—语言的句法分析器。读入一个C--语言程序
💻 ASM
字号:
	.386p
	model flat
	.code
_aa	proc	near
	push      ebp
	mov       ebp,esp
	sub	  esp, 0

	.....
	ret
_aa	endp

_b	proc	near
	push      ebp
	mov       ebp,esp
	sub	  esp, 0
(null)
	.....
	ret
_b	endp

_main	proc	near
	push      ebp
	mov       ebp,esp
	sub	  esp, 19
(null)
	.....
	ret
_main	endp

_a	proc	near
	push      ebp
	mov       ebp,esp
	sub	  esp, 0
	push ...
	call b

	.....
	ret
_a	endp

_c	proc	near
	push      ebp
	mov       ebp,esp
	sub	  esp, 0
(null)
	.....
	ret
_c	endp

	.data
_aa	DD	?
_arr	DD	?
_k	DB	?
_str	DB	?
_i	DD	?
_strp	DB	?
	public	_main
	end

⌨️ 快捷键说明

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