prog6_3.asm
来自「汇编语言-王爽 源代码 加 卜艳萍版源代码」· 汇编 代码 · 共 24 行
ASM
24 行
data segment
first dw 0d56ch
second dw 1f08h
third dw ?
third2 dw 2 dup(?)
data ends
code segment
assume cs:code,ds:data
start:mov ax,data
mov ds,ax
mov ax,first
add ax,second
mov third,ax
mov ax,first
mul second
mov third2,ax
mov third2+2,dx
mov ah,4ch
int 21h
code ends
end start
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?