wait.asm

来自「独孤剑客 ASM Source Code 1998-2001 for DOS」· 汇编 代码 · 共 25 行

ASM
25
字号
code    segment
        org     100h
        assume  cs:code,es:code
Start:  mov     ah,0fh             ;Get current page
        int     10h

        mov     ah,03h             ;Get current Position
        int     10h

        push    cs
        pop     es                 ;Show information
        mov     ax,1300h
        mov     bl,10001010b
        mov     bp,offset inf
        mov     cx,17
        int     10h

        mov     ax,4c00h           ;Exit to DOS
        int     21h

inf     db      "Please wait ...",0ah,0dh

code    ends
        end	Start

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?