2004-10-29 18:32:48 +02:00
|
|
|
|
.model tiny
|
|
|
|
|
.486
|
|
|
|
|
smart
|
|
|
|
|
.code
|
|
|
|
|
|
|
|
|
|
org 0100h
|
|
|
|
|
|
|
|
|
|
include ..\include\mem.h
|
|
|
|
|
include ..\include\divers.h
|
|
|
|
|
|
|
|
|
|
start:
|
|
|
|
|
maxfunc equ 4
|
|
|
|
|
|
|
|
|
|
jmp tsr ;Saute <20> la routine r<>sidente
|
|
|
|
|
nameed db 'MB' ;Nom drivers
|
|
|
|
|
id dw 1234h ;Identifiant drivers
|
|
|
|
|
Tsr:
|
|
|
|
|
cli ;D<>sactive interruptions logiciellement
|
|
|
|
|
cmp ax,cs:ID ;Compare si test de chargement
|
|
|
|
|
jne nomore ;Si pas test alors on continu
|
|
|
|
|
rol ax,3*4 ;Rotation de 3 chiffre de l'ID pour montrer que le drivers est charg<72>
|
|
|
|
|
jmp itsok ;On termine l'int avec notre code d'ID preuve du bon chargement de VIDEO
|
|
|
|
|
nomore:
|
|
|
|
|
cmp ah,maxfunc
|
|
|
|
|
jbe noerrorint
|
|
|
|
|
stc
|
|
|
|
|
jmp itsok
|
|
|
|
|
noerrorint:
|
|
|
|
|
clc
|
|
|
|
|
push bx
|
|
|
|
|
mov bl,ah ;On calcule d'apr<70>s le n<> de fonction
|
|
|
|
|
xor bh,bh ;quel sera l'entr<74>e dans la table index<65>e
|
|
|
|
|
shl bx,1 ;des adresses fonctions.
|
|
|
|
|
mov bx,cs:[bx+tables] ;On r<>cup<75>re cette adresse depuis la table
|
|
|
|
|
mov cs:current,bx ;On la stocke temporairement pour obtenir les registres d'origine
|
|
|
|
|
pop bx
|
|
|
|
|
clc
|
|
|
|
|
call cs:current ;Puis on execute la fonction
|
|
|
|
|
itsok:
|
|
|
|
|
push bp
|
|
|
|
|
mov bp,sp ;On prend sp dans bp pour adresser la pile
|
|
|
|
|
jnc noerror ;La fonction appel<65>e a renvoyer une erreur : Flag CARRY ?
|
|
|
|
|
or byte ptr [bp+6],1b;Si oui on le retranscrit sur le registre FLAG qui sera d<>pil<69> lors du IRET
|
|
|
|
|
;xor eax,eax
|
|
|
|
|
;mov ax,cs ;On r<>cup<75>re le segment et l'offset puis en renvoie l'adresse physique
|
|
|
|
|
;shl eax,4 ;de l'erreur.
|
|
|
|
|
;add ax,cs:current
|
|
|
|
|
;jmp endofint ;on termine l'int
|
|
|
|
|
noerror:
|
|
|
|
|
and byte ptr [bp+6],0FEh;Si pas d'erreur on efface le Bit CARRY du FLAG qui sera d<>pil<69> lors du IRET
|
|
|
|
|
endofint:
|
|
|
|
|
pop bp
|
|
|
|
|
sti ;On r<>active les interruptions logiciellement
|
|
|
|
|
iret ;Puis on retourne au programme appelant.
|
|
|
|
|
|
|
|
|
|
current dw 0 ;Mot temporaire qui contient l'adresse de la fonction appel<65>e
|
|
|
|
|
tables dw MBinit ;Table qui contient les adresses de toutes les fonctions de VIDEO (WORD)
|
|
|
|
|
dw MBFree
|
|
|
|
|
dw MBCreate
|
|
|
|
|
dw MBresident
|
|
|
|
|
|
2004-06-12 23:34:04 +02:00
|
|
|
|
FirstMB dw 0
|
|
|
|
|
|
2004-10-29 18:32:48 +02:00
|
|
|
|
;Initialise les blocs de m<>moire en prenant memorystart pour segment de base
|
2004-06-12 23:34:04 +02:00
|
|
|
|
MBinit:
|
|
|
|
|
push ax cx es
|
2004-10-29 18:32:48 +02:00
|
|
|
|
mov ax,memorystart
|
|
|
|
|
mov cs:Firstmb,ax
|
|
|
|
|
mov cx,0A000h
|
|
|
|
|
sub cx,ax
|
|
|
|
|
dec ax
|
2004-06-12 23:34:04 +02:00
|
|
|
|
dec ax
|
|
|
|
|
mov es,ax
|
2004-10-29 18:32:48 +02:00
|
|
|
|
mov es:[MB.Reference],Free
|
|
|
|
|
mov es:[MB.Sizes],cx
|
|
|
|
|
mov es:[MB.Check],'NH'
|
|
|
|
|
mov dword ptr es:[MB.Names],'eerF'
|
|
|
|
|
mov dword ptr es:[MB.Names+4],0
|
2004-06-12 23:34:04 +02:00
|
|
|
|
mov es:[MB.IsNotLast],False
|
|
|
|
|
clc
|
|
|
|
|
pop es cx ax
|
|
|
|
|
ret
|
|
|
|
|
notforfree:
|
|
|
|
|
stc
|
|
|
|
|
pop es cx ax
|
|
|
|
|
ret
|
|
|
|
|
|
|
|
|
|
;Lib<69>re le bloc de m<>moire GS
|
|
|
|
|
MBFree:
|
|
|
|
|
push bx es
|
|
|
|
|
mov bx,gs
|
2004-10-29 18:32:48 +02:00
|
|
|
|
dec bx
|
|
|
|
|
dec bx
|
2004-06-12 23:34:04 +02:00
|
|
|
|
mov es,bx
|
|
|
|
|
cmp es:[MB.Check],'NH'
|
|
|
|
|
je notforfree
|
|
|
|
|
mov es:[MB.IsResident],0
|
|
|
|
|
mov es:[MB.Reference],Free
|
|
|
|
|
mov dword ptr es:[MB.Names],'eerF'
|
|
|
|
|
mov dword ptr es:[MB.Names+4],0
|
|
|
|
|
pop es bx
|
2004-10-29 18:32:48 +02:00
|
|
|
|
ret
|
2004-06-12 23:34:04 +02:00
|
|
|
|
|
2004-10-29 18:32:48 +02:00
|
|
|
|
;Renvoie en GS le MB n<> bx
|
|
|
|
|
MBGet:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;Cre<72>r un bloc de nom ds:si de taille cx (octets) -> n<>segment dans GS
|
2004-06-12 23:34:04 +02:00
|
|
|
|
MBCreate:
|
|
|
|
|
push ax bx cx dx si di es
|
|
|
|
|
shr cx,4
|
|
|
|
|
inc cx
|
|
|
|
|
mov bx,cs:firstmb
|
|
|
|
|
dec bx
|
2004-10-29 18:32:48 +02:00
|
|
|
|
dec bx
|
|
|
|
|
mov dl,1
|
2004-06-12 23:34:04 +02:00
|
|
|
|
searchfree:
|
2004-10-29 18:32:48 +02:00
|
|
|
|
cmp dl,False
|
|
|
|
|
je wasntgood
|
2004-06-12 23:34:04 +02:00
|
|
|
|
mov es,bx
|
|
|
|
|
cmp es:[MB.Check],'NH'
|
|
|
|
|
jne wasntgood
|
|
|
|
|
cmp es:[MB.IsNotLast],True
|
|
|
|
|
sete dl
|
|
|
|
|
cmp es:[MB.Reference],Free
|
2004-10-29 18:32:48 +02:00
|
|
|
|
jne notsogood
|
2004-06-12 23:34:04 +02:00
|
|
|
|
mov ax,es:[MB.Sizes]
|
|
|
|
|
cmp cx,ax
|
|
|
|
|
ja notsogood
|
2004-10-29 18:32:48 +02:00
|
|
|
|
mov word ptr es:[MB.Check],'NH'
|
|
|
|
|
mov es:[MB.IsNotLast],True
|
2004-06-12 23:34:04 +02:00
|
|
|
|
mov es:[MB.Reference],cs
|
|
|
|
|
mov es:[MB.IsResident],False
|
|
|
|
|
mov es:[MB.Sizes],cx
|
2004-10-29 18:32:48 +02:00
|
|
|
|
mov di,MB.Names
|
2004-06-12 23:34:04 +02:00
|
|
|
|
push ax cx
|
2004-10-29 18:32:48 +02:00
|
|
|
|
mov cx,32
|
2004-06-12 23:34:04 +02:00
|
|
|
|
loops:
|
|
|
|
|
mov dh,[si]
|
|
|
|
|
inc si
|
|
|
|
|
dec cx
|
|
|
|
|
jz endofloops
|
|
|
|
|
cmp dh,0
|
|
|
|
|
je endofloops
|
|
|
|
|
mov es:[di],dh
|
|
|
|
|
inc di
|
|
|
|
|
jmp loops
|
|
|
|
|
endofloops:
|
|
|
|
|
inc cx
|
|
|
|
|
mov al,0
|
|
|
|
|
rep stosb
|
|
|
|
|
pop cx ax
|
|
|
|
|
sub ax,cx
|
|
|
|
|
dec ax
|
2004-10-29 18:32:48 +02:00
|
|
|
|
dec ax
|
|
|
|
|
;js nofree
|
|
|
|
|
inc bx
|
|
|
|
|
inc bx
|
2004-06-12 23:34:04 +02:00
|
|
|
|
mov gs,bx
|
|
|
|
|
add bx,cx
|
2004-10-29 18:32:48 +02:00
|
|
|
|
mov es,bx
|
2004-06-12 23:34:04 +02:00
|
|
|
|
mov es:[MB.IsNotLast],dl
|
|
|
|
|
mov es:[MB.IsResident],False
|
|
|
|
|
mov es:[MB.Reference],Free
|
|
|
|
|
mov es:[MB.Sizes],ax
|
|
|
|
|
mov dword ptr es:[MB.Names],'eerF'
|
|
|
|
|
mov dword ptr es:[MB.Names+4],0
|
|
|
|
|
mov es:[MB.Check],'NH'
|
|
|
|
|
nofree:
|
|
|
|
|
clc
|
|
|
|
|
pop es di si dx cx bx ax
|
|
|
|
|
ret
|
|
|
|
|
wasntgood:
|
|
|
|
|
stc
|
|
|
|
|
pop es di si dx cx bx ax
|
|
|
|
|
ret
|
2004-10-29 18:32:48 +02:00
|
|
|
|
notsogood:
|
|
|
|
|
inc bx
|
|
|
|
|
inc bx
|
|
|
|
|
add bx,es:[MB.Sizes]
|
|
|
|
|
jmp searchfree
|
2004-06-12 23:34:04 +02:00
|
|
|
|
|
|
|
|
|
;Rend le segment GS r<>sident
|
|
|
|
|
MBresident:
|
|
|
|
|
push bx es
|
|
|
|
|
mov bx,gs
|
|
|
|
|
dec bx
|
|
|
|
|
mov es,bx
|
|
|
|
|
mov es:[MB.IsResident],True
|
|
|
|
|
pop es bx
|
|
|
|
|
ret
|
2004-10-29 18:32:48 +02:00
|
|
|
|
|
|
|
|
|
end start
|