今天早上开始用nasm练习,所以我从helloworld毕业到加法和减法,然后是三角区域
现在我想从用户那里获得输入(比如提示),然后加/减或乘 遵循此代码
我该怎么做呢
section .data
msg:
db 'Addition is = %d',10,0
section .text
extern _printf
global _main
_main:
push ebp
mov esp,epb
mov eax,5
add eax,2
push eax
push msg
call _printf
pop ebp
mov esp,ebp
ret