新手自学汇编,无奈求解
invoke fun p1,p2对应的实际汇编代码是什么?
[解决办法]
- Assembly code
; 一般是下面的样子,c 标准调用模式,fun 子程为固定参数个数 push p2 push p1 call fun
发布时间: 2012-06-17 21:02:01 作者: rapoo
新手自学汇编,无奈求解
invoke fun p1,p2对应的实际汇编代码是什么?
[解决办法]
; 一般是下面的样子,c 标准调用模式,fun 子程为固定参数个数 push p2 push p1 call fun