prog7_14.asm
来自「汇编语言-王爽 源代码 加 卜艳萍版源代码」· 汇编 代码 · 共 30 行
ASM
30 行
stack segment stack
dw 64 dup(?)
stack ends
data segment
string db 'university'
lenstr equ $-string
data ends
code segment
assume cs:code,ds:data,ss:stack
start:mov ax,data
mov ds,ax
mov al,3
mov ah,0
int 10h
mov bp,seg string
mov es,bp
mov bp,offset string
mov cx,lenstr
mov dx,0
mov bl,25h
mov al,0
mov ah,13h
int 10h
mov ah,4ch
int 21h
code ends
end start
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?