mytest.asm
来自「c—语言的句法分析器。读入一个C--语言程序」· 汇编 代码 · 共 60 行
ASM
60 行
.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 + =
减小字号Ctrl + -
显示快捷键?