标签:color 实验 data style and 调试 span 多个 bsp
assume cs:code, ds:data data segment db ‘Nuist‘ db 5 dup(2) data ends code segment start: mov ax, data mov ds, ax mov ax, 0b800H mov es, ax mov cx, 5 mov si, 0 mov di, 0f00h s: mov al, [si] and al, 0dfh mov es:[di], al mov al, [5+si] mov es:[di+1] inc si add di, 2 ;di+2 loop s ? mov ah, 4ch int 21h code ends end start
标签:color 实验 data style and 调试 span 多个 bsp
原文地址:https://www.cnblogs.com/baijimtc/p/14010733.html