我希望能够打印到同一行,同时在nasm程序集中使用多次调用printf。
例如:
SEGMENT .text
mov eax,5
push eax
push format_num
call printf
add esp,8
...other code
mov eax,6
push eax
push format_num
call printf
add esp,8
SEGMENT .data
format_num db "%d",10,0
结果
5
6
虽然我想
56
由于10表示换行符,我原以为使用
format_num db "%d",0
会起作用,但这样就不会打印任何内容。
答案 0 :(得分:0)
打印后冲洗标准品。