📄 e6_3.asm
字号:
data segment
first dw 0d56ch
second dw 1f08h
third1 dw ?
third2 dw 2 dup(?)
data ends
code segment
assume cs:code,ds:data
star:mov ax,data
mov ds,ax
mov ax,first
add ax,second
mov third1,ax
mov ax,first
mul second
mov third2,ax
mov third2+2,dx
mov ah,4ch
int 21h
code ends
end star
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -