feat: intégration de la commande projfile de projection en bloc mémoire
This commit is contained in:
parent
df90101e7f
commit
4d989b0e3e
|
@ -68,6 +68,7 @@ tables dw readsector
|
||||||
dw readcluster
|
dw readcluster
|
||||||
dw writecluster
|
dw writecluster
|
||||||
dw getdir
|
dw getdir
|
||||||
|
dw projfile
|
||||||
|
|
||||||
maxfunc equ 24
|
maxfunc equ 24
|
||||||
|
|
||||||
|
@ -156,6 +157,44 @@ errorload:
|
||||||
pop di bx eax
|
pop di bx eax
|
||||||
ret
|
ret
|
||||||
|
|
||||||
|
;============projfile (Fonction 17)===============
|
||||||
|
;Charge le fichier ds:si sur un bloc mémoire -> ecx taille -> es bloc
|
||||||
|
;-> AH=17
|
||||||
|
;<- Flag Carry si erreur
|
||||||
|
;=====================================================
|
||||||
|
projfile:
|
||||||
|
push eax bx di gs
|
||||||
|
push cs
|
||||||
|
pop es
|
||||||
|
mov di,offset tempfit
|
||||||
|
call searchfile
|
||||||
|
jne errorload
|
||||||
|
jc errorload
|
||||||
|
mov eax,cs:tempfit.FileSize
|
||||||
|
mov ecx,eax
|
||||||
|
add ecx,19000
|
||||||
|
push ax
|
||||||
|
mov ah,2
|
||||||
|
int 49h
|
||||||
|
pop ax
|
||||||
|
jc errorload2
|
||||||
|
push gs
|
||||||
|
pop es
|
||||||
|
mov cx,cs:tempfit.FileGroup
|
||||||
|
mov di,100h
|
||||||
|
call loadway
|
||||||
|
jc errorload2
|
||||||
|
clc
|
||||||
|
mov ecx,eax
|
||||||
|
pop gs di bx eax
|
||||||
|
ret
|
||||||
|
errorload2:
|
||||||
|
stc
|
||||||
|
mov ecx,0
|
||||||
|
pop gs di bx eax
|
||||||
|
ret
|
||||||
|
|
||||||
|
|
||||||
tempfit db 32 dup (0)
|
tempfit db 32 dup (0)
|
||||||
|
|
||||||
;=============SearchFile (Fonction 10)===============
|
;=============SearchFile (Fonction 10)===============
|
||||||
|
|
Loading…
Reference in New Issue