21,498
社区成员
发帖
与我相关
我的任务
分享
push ds
xor ax,ax
push ax
;your code is here
retf.model small
.code
org 100h
start:
mov ax, 0012h
int 10h ;set display mode
mov bx, 0001h
mov ah, 0bh
int 10h ;set Palette
mov ah, 4ch
int 21h
end