eg0314.asm
来自「宏汇编器」· 汇编 代码 · 共 19 行
ASM
19 行
;eg0314.asm
include io32.inc
.data
wvar word 34000
.code
start:
xor eax,eax
mov ax,wvar
shl eax,1 ;*2
mov ebx,eax
shl eax,2 ;*8
add eax,ebx ;*10
call dispuid
call dispcrlf
imul eax,10 ;*10
call dispuid
exit 0
end start
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?