eg0309a.asm
来自「宏汇编器」· 汇编 代码 · 共 21 行
ASM
21 行
;eg0309a.asm
include io32.inc
.data
num byte 6,7,7,8,3,0,0,0
tab byte '0123456789'
.code
start:
mov ecx,lengthof num
mov esi,offset num
mov ebx,offset tab
again: mov eax,0
mov al,[esi]
add eax,ebx
mov al,[eax]
call dispc
add esi,1
loop again
exit 0
end start
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?