eg0704a.asm
来自「宏汇编器」· 汇编 代码 · 共 16 行
ASM
16 行
;eg0704a.asm in Win32 Console
include io32.inc
.data
msg byte 0dh,0ah,'No overflow !',0
.code
start:
call readuib
add al,100
jno noflow
into
jmp done
noflow: mov eax,offset msg
call dispmsg
done: exit 0
end start
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?