fix: correction de divers bogue dans la fonction print
This commit is contained in:
parent
b0835bc5a7
commit
708590c85e
|
@ -98,7 +98,7 @@ print PROC FAR
|
||||||
je @@showstring
|
je @@showstring
|
||||||
cmp cl,'0'
|
cmp cl,'0'
|
||||||
je @@showstring0
|
je @@showstring0
|
||||||
cmp cl,'d'
|
cmp cl,'y'
|
||||||
je @@showbcd
|
je @@showbcd
|
||||||
cmp cl,'z'
|
cmp cl,'z'
|
||||||
je @@showsize
|
je @@showsize
|
||||||
|
@ -114,11 +114,26 @@ print PROC FAR
|
||||||
jmp @@no0
|
jmp @@no0
|
||||||
|
|
||||||
@@showchar:
|
@@showchar:
|
||||||
|
cmp byte ptr [si+2],'M'
|
||||||
|
je @@showmultchar
|
||||||
push word ptr [offset pointer+di+2]
|
push word ptr [offset pointer+di+2]
|
||||||
call showchar
|
call showchar
|
||||||
add si,2
|
add si,2
|
||||||
add di,2
|
add di,2
|
||||||
jmp @@strinaize0
|
jmp @@strinaize0
|
||||||
|
@@showmultchar:
|
||||||
|
mov cx,[offset pointer+di+2+2]
|
||||||
|
cmp cx,0
|
||||||
|
je @@nextfunc
|
||||||
|
@@showcharx:
|
||||||
|
push word ptr [offset pointer+di+2]
|
||||||
|
call showchar
|
||||||
|
dec cx
|
||||||
|
jnz @@showcharx
|
||||||
|
@@nextfunc:
|
||||||
|
add si,3
|
||||||
|
add di,4
|
||||||
|
jmp @@strinaize0
|
||||||
|
|
||||||
@@showint:
|
@@showint:
|
||||||
push dword ptr [offset pointer+di+2]
|
push dword ptr [offset pointer+di+2]
|
||||||
|
@ -299,12 +314,9 @@ print PROC FAR
|
||||||
jmp @@no0
|
jmp @@no0
|
||||||
|
|
||||||
@@color:
|
@@color:
|
||||||
mov ah,[si+2]
|
mov cl,[si+2]
|
||||||
sub ah,'0'
|
sub cl,'0'
|
||||||
mov cl,ah
|
shl cl,4
|
||||||
shl cl,3
|
|
||||||
add cl,ah
|
|
||||||
add cl,ah
|
|
||||||
add cl,[si+3]
|
add cl,[si+3]
|
||||||
sub cl,'0'
|
sub cl,'0'
|
||||||
mov ah,21
|
mov ah,21
|
||||||
|
@ -402,13 +414,13 @@ print PROC FAR
|
||||||
add bh,[si+3]
|
add bh,[si+3]
|
||||||
sub bh,'0'
|
sub bh,'0'
|
||||||
;
|
;
|
||||||
mov ah,[si+2]
|
mov ah,[si+5]
|
||||||
sub ah,'0'
|
sub ah,'0'
|
||||||
mov bl,ah
|
mov bl,ah
|
||||||
shl bl,3
|
shl bl,3
|
||||||
add bl,ah
|
add bl,ah
|
||||||
add bl,ah
|
add bl,ah
|
||||||
add bl,[si+3]
|
add bl,[si+6]
|
||||||
sub bl,'0'
|
sub bl,'0'
|
||||||
mov ah,25
|
mov ah,25
|
||||||
int 47h
|
int 47h
|
||||||
|
|
Loading…
Reference in New Issue