Category : Recently Uploaded Files
Archive   : MSQ320.ZIP
Filename : VIO.ASM

 
Output of file : VIO.ASM contained in archive : MSQ320.ZIP
;
; screen handling primitives
;
; by: jim nutt
;
; mods by Paul Edwards

.model large

.data

vseg dw 0b000h
vmode db ?
x dw 0
y dw 0
color db 07h
ofs dw 0
xhite db 8

; video information block

VIOinfo struc
level db ?
db ?
dw ?
flags dw ?
mode db ?
db ?
colors dw ?
pixcol dw ?
pixrow dw ?
txtcol dw ?
txtrow dw ?
VIOinfo ends

info VIOinfo <0,0,14,1,0,0,2,0,0,80,25>

.code

public _VIOopen, _VIOclose, _VIOcolumns, _VIOrows, _VIOmode
public _VIOscrollright, _VIOscrollleft, _VIOscrollup, _VIOscrolldown
public _VIOclear, _VIOputc, _VIOputs, _VIOgetca, _VIOgetra, _VIOheight
public _VIOsetfore, _VIOsetback, _VIOgetfore, _VIOgetback
public _VIOgotoxy, _VIOupdate, _VIOwherex, _VIOwherey, _VIOputr
public _VIOcursor, _VIOsegment, _VIOsetSegment, _VIOsetRows, _VIOsetCols


;
;int VIOheight(void)
;

_VIOheight proc

mov al, xhite;
xor ah,ah;
ret

_VIOheight endp


;
;int VIOopen(void);
;

_VIOopen proc

push ds
push bx
push cx
push dx
push es
push di

mov ax,3000h ; get dos version, v4 can do this from dos
int 21h

; cmp al,4
; jge odos4

mov ax,0f00h ; get screen mode and width
int 10h

mov vmode, al

cmp al,7
je mono

xor al,al
xchg al,ah
mov info.txtcol,ax
mov vseg,0b800h

push di
mov ax,0fe00h
mov es,vseg
mov di,0
int 10h
pop di
mov vseg,es

push bp ; how many rows
mov ax,1130h
mov bh,1h
xor dx,dx
int 10h
pop bp

cmp dl,0
je cga

mov xhite,cl
inc dl
xor dh,dh
mov info.txtrow,dx

mono: mov ax,0
jmp finopen

odos4: mov ax,440ch
mov bx,0
mov cx,037fh
mov dx,offset info
int 21h
jnc l1

jmp finopen

cga: mov info.txtrow,25

l1: mov ax,0
finopen:
pop di
pop es
pop dx
pop cx
pop bx
pop ds
ret

_VIOopen endp


;
;void VIOclose(void);
;

_VIOclose proc

push ax
push bx
push cx
push dx

mov ax,3000h
int 21h

cmp al,4
jl l2

mov ax,440ch
mov bx,0
mov cx,035fh
mov dx,offset info
int 21h

l2:
pop dx
pop cx
pop bx
pop ax

ret

_VIOclose endp


;
;int VIOcolumns(void);
;

_VIOcolumns proc

mov ax,info.txtcol
ret

_VIOcolumns endp


;
;int VIOrows(void);
;

_VIOrows proc

mov ax,info.txtrow
ret

_VIOrows endp


;
;int VIOmode(void);
;

_VIOmode proc

mov al,vmode
xor ah,ah
ret

_VIOmode endp


;
;int VIOwherex(void);
;

_VIOwherex proc

mov ax,x
ret

_VIOwherex endp


;
;int VIOwherey(void);
;

_VIOwherey proc

mov ax,y
ret

_VIOwherey endp


;
;void VIOscrollright(int x1, int y1, int x2, int y2, int count);
;

_VIOscrollright proc

push bp
mov bp,sp
pushf

std

push di
push si
push ax
push bx
push cx
push dx
push es
push ds

mov ax,[bp+8]
mov bx,[bp+12]
sub bx,ax
mov cx,info.txtcol
mul cl
mov dx,[bp+10]
add dx,ax
shl dx,1
mov cx,[bp+10]
sub cx,[bp+6]

add bx,2
mov [bp+6],cx
mov [bp+8],bx

mov es,vseg

sr1: dec word ptr [bp+8]
jz sr3
mov bx,[bp+14]

push ds
mov ah,color
mov al,20h

push es
pop ds

sr2: mov di,dx
mov si,di
dec si
dec si
mov cx,[bp+6]
rep movsw
stosw
dec bx
jnz sr2

pop ds
mov ax,info.txtcol
shl ax,1
add dx,ax
jmp sr1

sr3:
pop ds
pop es
pop dx
pop cx
pop bx
pop ax
pop si
pop di

popf
pop bp
ret

_VIOscrollright endp


;
;void VIOscrollleft(int x1, int y1, int x2, int y2, int count);
;

_VIOscrollleft proc

push bp
mov bp,sp
pushf

push di
push si
push ax
push bx
push cx
push dx
push es
push ds

mov ax,[bp+8]
mov bx,[bp+12]
sub bx,ax
mov cx,info.txtcol
mul cl
mov dx,[bp+6]
add dx,ax
shl dx,1
mov cx,[bp+10]
sub cx,[bp+6]

add bx,2
mov [bp+6],cx
mov [bp+8],bx

mov es,vseg

sl1: dec word ptr [bp+8]
jz sl3
mov bx,[bp+14]

push ds
mov ah,color
mov al,20h

push es
pop ds

sl2: mov di,dx
mov si,di
inc si
inc si
mov cx,[bp+6]
rep movsw
stosw
dec bx
jnz sl2

pop ds
mov ax,info.txtcol
shl ax,1
add dx,ax
jmp sl1

sl3:
pop ds
pop es
pop dx
pop cx
pop bx
pop ax
pop si
pop di

popf
pop bp
ret

_VIOscrollleft endp


;
;void VIOscrollup(int x1, int y1, int x2, int y2, int count);
;

_VIOscrollup proc

push bp
mov bp,sp
push di
push si
push ax
push bx
push cx
push dx
push es
push ds

mov es,vseg

mov bx,[bp+6]
mov ax,[bp+8]
mov dx,info.txtcol
mul dl
add ax,bx
shl ax,1
shl dx,1

push ax
push ds
push ax

mov cx,[bp+10]
sub cx,bx
mov bx,cx

mov ax,[bp+12]
sub ax,[bp+8]
mov [bp+12],ax

push es
pop ds
inc word ptr [bp+14]

l9: dec word ptr [bp+14]
jz l11
mov ax,[bp+12]

l10: pop di
mov si,di
add si,dx
push si
mov cx,bx
rep movsw
dec ax
jne l10

pop di
pop ds
mov al,20h
mov ah,color
mov cx,bx
rep stosw

pop di
push di
push ds
push di

push es
pop ds
jmp l9

l11:
pop ax
pop ds
pop ax

pop ds
pop es
pop dx
pop cx

pop bx
pop ax
pop si
pop di

pop bp
ret

_VIOscrollup endp


;
;void VIOscrolldown(int x1, int y1, int x2, int y2, int count);
;

_VIOscrolldown proc

push bp
mov bp,sp
push di
push si
push ax
push bx
push cx
push dx
push es
push ds

mov es,vseg

mov bx,[bp+6]
mov ax,[bp+12]
mov dx,info.txtcol
mul dl
add ax,bx
shl ax,1
shl dx,1

push ax
push ds
push ax

mov cx,[bp+10]
sub cx,bx
mov bx,cx

mov ax,[bp+12]
sub ax,[bp+8]
mov [bp+12],ax

push es
pop ds
inc word ptr [bp+14]

l6: dec word ptr [bp+14]
jz l7
mov ax,[bp+12]

l8: pop di
mov si,di
sub si,dx
push si
mov cx,bx
rep movsw
dec ax
jne l8

pop di
pop ds
mov al,20h
mov ah,color
mov cx,bx
rep stosw

pop di
push di
push ds
push di

push es
pop ds
jmp l6

l7:
pop ax
pop ds
pop ax

pop ds
pop es
pop dx
pop cx
pop bx
pop ax
pop si
pop di
pop bp
ret

_VIOscrolldown endp


;
;void VIOclear(int x1, int y1, int x2, int y2);
;

_VIOclear proc

push bp
mov bp,sp
push di
push si
push ax
push bx
push cx
push dx
push es
push ds

mov es,vseg

mov ax,[bp+8]
mov bx,[bp+6]
mov cx,info.txtcol
mul cl
add ax,bx
shl ax,1
mov si,ax
mov bx,[bp+10]
sub bx,[bp+6]
inc bx
mov dx,[bp+12]
sub dx,[bp+8]
inc dx
mov al,20h
mov ah,color

l5: mov di,si
mov cx,bx
rep stosw
mov cx,info.txtcol
shl cx,1
add si,cx
dec dx
jne l5

pop ds
pop es
pop dx
pop cx
pop bx
pop ax
pop si
pop di
pop bp
ret

_VIOclear endp


;
;void VIOputc(const char c);
;

_VIOputc proc

push bp
mov bp,sp
push di
push si
push ax
push bx
push cx
push dx
push es
push ds

push di

mov es,vseg
mov di,ofs

mov ax,[bp+6]
mov ah,color

stosw

mov ofs,di
pop di

mov ax,x
inc ax
cmp ax,info.txtcol
jge cwrap

mov x,ax

jmp myexit

cwrap: inc y
sub ax,info.txtcol
mov x,ax

myexit:

pop ds
pop es
pop dx
pop cx
pop bx
pop ax
pop si
pop di
pop bp
ret

_VIOputc endp


;
;void VIOputs(const char *s);
;

_VIOputs proc

push bp
mov bp,sp

push di
push si
push ax
push bx
push cx
push dx
push es
push ds

push di
push ds

mov es,vseg
mov di,ofs

mov ah,color
lds si,[bp+6]
mov bx,x

l3: lodsb
cmp al,0
je l4
stosw
inc bx

jmp l3

l4: mov ofs,di
pop ds
pop di

cmp bx,info.txtcol
jge swrap

mov x,bx

jmp myexit2

swrap: inc y
sub bx,info.txtcol
mov x,bx

myexit2:

pop ds
pop es
pop dx
pop cx
pop bx
pop ax
pop si
pop di
pop bp
ret

_VIOputs endp


;
;int VIOgetca(const int x, const int y);
;

_VIOgetca proc

push bp
mov bp,sp

push di
push si
push ax
push bx
push cx
push dx
push es
push ds

mov es,vseg
mov ax,[bp+8]
mov bx,[bp+6]
mov cx,info.txtcol
mul cl
add ax,bx
shl ax,1

xchg ax,bx
mov ax,es:[bx]

pop ds
pop es
pop dx
pop cx
pop bx
pop ax
pop si
pop di
pop bp
ret

_VIOgetca endp


;
;void VIOgetra(int x1, int y1, int x2, int y2, int *b);
;
; Retrieve some screen data and put it into array pointed to
; by b.

_VIOgetra proc

push bp
mov bp,sp
push di
push si
push ax
push bx
push cx
push dx
push ds
push es

mov ax,[bp+8] ; y1
mov bx,info.txtcol
mul bl ; y1 * width of screen
add ax,[bp+6]
shl ax,1 ; x1 * 2
shl bx,1 ; width * 2
mov cx,[bp+10]
sub cx,[bp+6] ; x2 - x1
mov dx,[bp+12]
sub dx,[bp+8] ; y2 - y1
inc dx
inc cx
les di,[bp+14]
mov ds,vseg
push cx

gr1: pop cx
push cx
mov si,ax
rep movsw
add ax,bx
dec dx
jnz gr1

pop cx

pop es
pop ds
pop dx
pop cx
pop bx
pop ax
pop si
pop di
pop bp
ret

_VIOgetra endp


;
;void VIOputr(int x, int y, int w, int h, int *b);
;

_VIOputr proc

push bp
mov bp,sp

push ds
push si
push di
push ax
push bx
push cx
push dx

mov ax,[bp+8]
mov bx,info.txtcol
mul bl ; y * width
add ax,[bp+6]
shl ax,1
shl bx,1

mov es,vseg

lds si,[bp+14]
mov dx,[bp+10]

pr1: mov cx,dx
mov di,ax
rep movsw
add ax,bx
dec word ptr [bp+12]
jnz pr1

pop dx
pop cx
pop bx
pop ax
pop di
pop si
pop ds

pop bp
ret

_VIOputr endp


;
;void VIOsetfore(const int c);
;

_VIOsetfore proc

push bp
mov bp,sp
push ax
push bx

mov bl,color
and bx,00f0h
mov ax,[bp+6]
and ax,000fh
or ax,bx
mov color,al

pop bx
pop ax
pop bp
ret

_VIOsetfore endp


;
;void VIOsetback(const int c);
;

_VIOsetback proc

push bp
mov bp,sp
push ax
push bx

mov bl,color
and bx,000fh
mov ax,[bp+6]
and ax,000fh
shl ax,1
shl ax,1
shl ax,1
shl ax,1
or ax,bx
mov color,al

pop bx
pop ax
pop bp
ret

_VIOsetback endp


;
;int VIOgetfore(void);
;

_VIOgetfore proc

mov al,color
and ax,000fh
ret

_VIOgetfore endp



;
;int VIOgetback(void);
;

_VIOgetback proc

mov al,color
and ax,00f0h
shr al,1
shr al,1
shr al,1
shr al,1
ret

_VIOgetback endp


;
;void VIOgotoxy(int x, int y);
;

_VIOgotoxy proc

push bp
mov bp,sp
push ax
push bx
push cx

mov bx,[bp + 6]
mov ax,[bp + 8]

mov x,bx
mov y,ax

mov cx,info.txtcol
mul cl

add ax,bx
shl ax,1

mov ofs,ax

pop cx
pop bx
pop ax
pop bp
ret

_VIOgotoxy endp


;
;void VIOupdate(int x1, int y1, int x2, int y2);
;

_VIOupdate proc

push ax
push bx
push cx
push dx
mov ah,2
mov bh,0
mov cx,y
mov dx,x
mov dh,cl
int 10h

pop dx
pop cx
pop bx
pop ax
ret

_VIOupdate endp


;
;void VIOcursor(int *x, int *y, int *shape);
;

_VIOcursor proc

push bp
mov bp,sp
push ds
push ax
push bx
push cx
push dx

mov ah,3
mov bh,0
int 10h

mov al,dl
cbw
lds bx,[bp + 6]
mov [bx],ax

mov al,dh
cbw
lds bx,[bp + 10]
mov [bx],ax

lds bx,[bp + 14]
mov [bx],cx

pop dx
pop cx
pop bx
pop ax
pop ds
pop bp
ret

_VIOcursor endp


;
;unsigned int VIOsegment(void);
;

_VIOsegment proc

mov ax, vseg
ret

_VIOsegment endp


;
;void VIOsetSegment(unsigned int s);
;

_VIOsetSegment proc

push bp
mov bp,sp
push ax

mov ax, [bp + 6]
mov vseg,ax

pop ax
pop bp
ret

_VIOsetSegment endp


;
;void VIOsetRows(int r);
;

_VIOsetRows proc

push bp
mov bp,sp
push ax

mov ax,[bp + 6]
mov info.txtrow,ax

pop ax
pop bp
ret

_VIOsetRows endp


;
;void VIOsetCols(int c);
;

_VIOsetCols proc

push bp
mov bp,sp
push ax

mov ax,[bp + 6]
mov info.txtcol, ax

pop ax
pop bp
ret

_VIOsetCols endp

end


  3 Responses to “Category : Recently Uploaded Files
Archive   : MSQ320.ZIP
Filename : VIO.ASM

  1. Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!

  2. This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.

  3. But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/