image_:
push bp
mov bp,sp
push si
mov dx,[bp+6];坐标y
image_y:
mov cx,[bp+4];坐标x
image_x:
mov al,[si] ;0010b ;颜色
mov ah,0ch ;写入点像
inc cx
inc si
int 0x10
mov ax,[bp+4]
mov bx,[bp+8]
add ax,bx
cmp cx, ax;检查宽度界限
jne image_x
inc dx
mov ax,[bp+6]
mov bx,[bp+10]
add ax,bx
cmp dx,ax;检查高度界限
jne image_y
pop si
pop bp
ret