⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 show.asm

📁 独孤剑客 ASM Source Code 1998-2001 for DOS
💻 ASM
字号:
code    segment
        org     100h
        assume  cs:code,ds:code
Start:  push    cs
        pop     ds
        mov     ax,0013h
        int     10h

        mov     ax,0a000h
        mov     es,ax
        mov     di,0
        mov     al,0
        mov     cx,16
L001:
        push    cx
        mov     cx,3200
        rep     stosb
        pop     cx
        inc     al
        loop    L001

        lea     dx,StrInfo
        mov     ah,09h
        int     21h

        mov     ah,08h
        int     21h

        mov     ax,0003h
        int     10h

        mov     ax,4c00h
        int     21h
StrInfo db      "16 COLORS IN 256 PAL$"
code    ends
        end     Start

⌨️ 快捷键说明

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