1053 lines
21 KiB
NASM
1053 lines
21 KiB
NASM
.model tiny
|
||
.486
|
||
smart
|
||
locals
|
||
.code
|
||
org 0h
|
||
|
||
include ..\include\mem.h
|
||
|
||
start:
|
||
header exe <,1,0,,,,offset exports,>
|
||
|
||
exports:
|
||
db "print",0
|
||
dw print
|
||
db "showdate",0
|
||
dw showdate
|
||
db "showtime",0
|
||
dw showtime
|
||
db "showname",0
|
||
dw showname
|
||
db "showattr",0
|
||
dw showattr
|
||
db "showsize",0
|
||
dw showsize
|
||
db "showspace",0
|
||
dw showspace
|
||
db "showline",0
|
||
dw showline
|
||
db "showchar",0
|
||
dw showchar
|
||
db "showint",0
|
||
dw ShowInt
|
||
db "Showsigned",0
|
||
dw Showsigned
|
||
db "showhex",0
|
||
dw ShowHex
|
||
db "showbin",0
|
||
dw Showbin
|
||
db "showbcd",0
|
||
dw ShowBCD
|
||
db "showstring",0
|
||
dw showstring
|
||
db "showstring0",0
|
||
dw showstring0
|
||
db "showintr",0
|
||
dw showintr
|
||
db "showintl",0
|
||
dw showintl
|
||
dw 0
|
||
|
||
;================PRINT==============
|
||
;Affiche la chaine %0 en utilisant les parametres de formatage %x....%x
|
||
;-> %0 %x
|
||
;<-
|
||
;===================================
|
||
print PROC FAR
|
||
ARG pointer:word=taille
|
||
push bp
|
||
mov bp,sp
|
||
push ax bx cx si di
|
||
xor di,di
|
||
mov si,[pointer]
|
||
@@strinaize0:
|
||
mov cl,[si]
|
||
cmp cl,0
|
||
je @@no0
|
||
cmp cl,'%'
|
||
je @@special
|
||
cmp cl,'\'
|
||
je @@special2
|
||
@@showit:
|
||
call charout
|
||
inc si
|
||
jmp @@strinaize0
|
||
@@special:
|
||
cmp byte ptr [si+1],'%'
|
||
jne @@notshowit
|
||
inc si
|
||
jmp @@showit
|
||
@@notshowit:
|
||
mov cl,byte ptr [si+1]
|
||
cmp cl,'c'
|
||
je @@showchar
|
||
cmp cl,'u'
|
||
je @@showint
|
||
cmp cl,'v'
|
||
je @@showfixint
|
||
cmp cl,'w'
|
||
je @@showintr
|
||
cmp cl,'i'
|
||
je @@showsigned
|
||
cmp cl,'h'
|
||
je @@showhex
|
||
cmp cl,'b'
|
||
je @@showbin
|
||
cmp cl,'s'
|
||
je @@showstring
|
||
cmp cl,'0'
|
||
je @@showstring0
|
||
cmp cl,'y'
|
||
je @@showbcd
|
||
cmp cl,'z'
|
||
je @@showsize
|
||
cmp cl,'a'
|
||
je @@showattr
|
||
cmp cl,'n'
|
||
je @@showname
|
||
cmp cl,'t'
|
||
je @@showtime
|
||
cmp cl,'d'
|
||
je @@showdate
|
||
clc
|
||
jmp @@no0
|
||
|
||
@@showchar:
|
||
cmp byte ptr [si+2],'M'
|
||
je @@showmultchar
|
||
push word ptr [offset pointer+di+2]
|
||
call showchar
|
||
add si,2
|
||
add di,2
|
||
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:
|
||
push dword ptr [offset pointer+di+2]
|
||
call showint
|
||
add si,2
|
||
add di,4
|
||
jmp @@strinaize0
|
||
|
||
@@showfixint:
|
||
push dword ptr [offset pointer+di+2]
|
||
add di,4
|
||
push word ptr [offset pointer+di+2]
|
||
add di,2
|
||
call showintl
|
||
add si,2
|
||
jmp @@strinaize0
|
||
|
||
@@showintr:
|
||
push dword ptr [offset pointer+di+2]
|
||
add di,4
|
||
push word ptr [offset pointer+di+2]
|
||
add di,2
|
||
call showintr
|
||
add si,2
|
||
jmp @@strinaize0
|
||
|
||
@@showsigned:
|
||
call @@Chosesize
|
||
call showsigned
|
||
jmp @@strinaize0
|
||
|
||
@@showhex:
|
||
call @@Chosesize
|
||
call showhex
|
||
jmp @@strinaize0
|
||
|
||
@@showbin:
|
||
call @@Chosesize
|
||
call showbin
|
||
jmp @@strinaize0
|
||
|
||
@@showstring:
|
||
cmp byte ptr [si+2],'P'
|
||
je @@showstringpointer
|
||
push word ptr [offset pointer+di+2]
|
||
call showstring
|
||
add si,2
|
||
add di,2
|
||
jmp @@strinaize0
|
||
@@showstringpointer:
|
||
push ds
|
||
mov ds,[offset pointer+di+2+2]
|
||
push word ptr [offset pointer+di+2]
|
||
call showstring
|
||
add si,3
|
||
add di,4
|
||
pop ds
|
||
jmp @@strinaize0
|
||
|
||
@@showstring0:
|
||
cmp byte ptr [si+2],'P'
|
||
je @@showstring0pointer
|
||
push word ptr [offset pointer+di+2]
|
||
call showstring0
|
||
add si,2
|
||
add di,2
|
||
jmp @@strinaize0
|
||
@@showstring0pointer:
|
||
push ds
|
||
mov ds,[offset pointer+di+2+2]
|
||
push word ptr [offset pointer+di+2]
|
||
call showstring0
|
||
add si,3
|
||
add di,4
|
||
pop ds
|
||
jmp @@strinaize0
|
||
|
||
@@showbcd:
|
||
call @@Chosesize
|
||
call showbcd
|
||
jmp @@strinaize0
|
||
|
||
@@showsize:
|
||
push dword ptr [offset pointer+di+2]
|
||
call showsize
|
||
add si,2
|
||
add di,4
|
||
jmp @@strinaize0
|
||
|
||
@@showattr:
|
||
push word ptr [offset pointer+di+2]
|
||
call showattr
|
||
add si,2
|
||
add di,2
|
||
jmp @@strinaize0
|
||
|
||
@@showname:
|
||
push word ptr [offset pointer+di+2]
|
||
call showname
|
||
add si,2
|
||
add di,2
|
||
jmp @@strinaize0
|
||
|
||
@@showtime:
|
||
push word ptr [offset pointer+di+2]
|
||
call showtime
|
||
add si,2
|
||
add di,2
|
||
jmp @@strinaize0
|
||
|
||
@@showdate:
|
||
push word ptr [offset pointer+di+2]
|
||
call showdate
|
||
add si,2
|
||
add di,2
|
||
jmp @@strinaize0
|
||
|
||
@@Chosesize:
|
||
pop cx
|
||
push dword ptr [offset pointer+di+2]
|
||
add di,4
|
||
cmp byte ptr [si+2],'B'
|
||
je @@byte
|
||
cmp byte ptr [si+2],'W'
|
||
je @@word
|
||
cmp byte ptr [si+2],'D'
|
||
je @@dword
|
||
dec si
|
||
|
||
@@word:
|
||
push 16
|
||
add si,3
|
||
push cx
|
||
retn
|
||
|
||
@@byte:
|
||
push 8
|
||
add si,3
|
||
push cx
|
||
retn
|
||
|
||
@@dword:
|
||
push 32
|
||
add si,3
|
||
push cx
|
||
retn
|
||
|
||
@@special2:
|
||
cmp byte ptr [si+1],'\'
|
||
jne @@notshowit2
|
||
inc si
|
||
jmp @@showit
|
||
@@notshowit2:
|
||
mov cl,byte ptr [si+1]
|
||
cmp cl,'l'
|
||
je @@showline
|
||
cmp cl,'g'
|
||
je @@goto
|
||
cmp cl,'h'
|
||
je @@gotox
|
||
cmp cl,'c'
|
||
je @@color
|
||
cmp cl,'m'
|
||
je @@setvideomode
|
||
cmp cl,'e'
|
||
je @@clearscreen
|
||
cmp cl,'s'
|
||
je @@savestate
|
||
cmp cl,'r'
|
||
je @@restorestate
|
||
cmp cl,'i'
|
||
je @@enablescroll
|
||
cmp cl,'j'
|
||
je @@disablescroll
|
||
cmp cl,'f'
|
||
je @@setfont
|
||
clc
|
||
jmp @@no0
|
||
|
||
@@color:
|
||
mov cl,[si+2]
|
||
sub cl,'0'
|
||
shl cl,4
|
||
add cl,[si+3]
|
||
sub cl,'0'
|
||
mov ah,21
|
||
int 47h
|
||
add si,4
|
||
jmp @@strinaize0
|
||
|
||
@@gotox:
|
||
mov ah,24
|
||
int 47h
|
||
mov ah,[si+2]
|
||
sub ah,'0'
|
||
mov bh,ah
|
||
shl bh,3
|
||
add bh,ah
|
||
add bh,ah
|
||
add bh,[si+3]
|
||
sub bh,'0'
|
||
mov ah,25
|
||
int 47h
|
||
add si,4
|
||
jmp @@strinaize0
|
||
|
||
@@setvideomode:
|
||
mov ah,[si+2]
|
||
sub ah,'0'
|
||
mov al,ah
|
||
shl al,3
|
||
add al,ah
|
||
add al,ah
|
||
add al,[si+3]
|
||
sub al,'0'
|
||
mov ah,0
|
||
int 47h
|
||
add si,4
|
||
jmp @@strinaize0
|
||
|
||
@@setfont:
|
||
mov ah,[si+2]
|
||
sub ah,'0'
|
||
mov cl,ah
|
||
shl cl,3
|
||
add cl,ah
|
||
add cl,ah
|
||
add cl,[si+3]
|
||
sub cl,'0'
|
||
mov ah,3
|
||
int 47h
|
||
add si,4
|
||
jmp @@strinaize0
|
||
|
||
@@showline:
|
||
mov ah,6
|
||
int 47h
|
||
add si,2
|
||
jmp @@strinaize0
|
||
|
||
@@clearscreen:
|
||
mov ah,2
|
||
int 47h
|
||
add si,2
|
||
jmp @@strinaize0
|
||
|
||
@@savestate:
|
||
mov ah,40
|
||
int 47h
|
||
add si,2
|
||
jmp @@strinaize0
|
||
|
||
@@restorestate:
|
||
mov ah,41
|
||
int 47h
|
||
add si,2
|
||
jmp @@strinaize0
|
||
|
||
@@enablescroll:
|
||
mov ah,42
|
||
int 47h
|
||
add si,2
|
||
jmp @@strinaize0
|
||
|
||
@@disablescroll:
|
||
mov ah,43
|
||
int 47h
|
||
add si,2
|
||
jmp @@strinaize0
|
||
|
||
@@goto:
|
||
mov ah,[si+2]
|
||
sub ah,'0'
|
||
mov bh,ah
|
||
shl bh,3
|
||
add bh,ah
|
||
add bh,ah
|
||
add bh,[si+3]
|
||
sub bh,'0'
|
||
;
|
||
mov ah,[si+5]
|
||
sub ah,'0'
|
||
mov bl,ah
|
||
shl bl,3
|
||
add bl,ah
|
||
add bl,ah
|
||
add bl,[si+6]
|
||
sub bl,'0'
|
||
mov ah,25
|
||
int 47h
|
||
add si,7
|
||
jmp @@strinaize0
|
||
|
||
@@no0:
|
||
add di,bp
|
||
add di,2
|
||
mov ax,ss:[bp] ;BP
|
||
mov bx,ss:[bp+2] ;IP
|
||
mov cx,ss:[bp+4] ;CS
|
||
mov ss:[di],ax
|
||
mov ss:[di+2],bx
|
||
mov ss:[di+4],cx
|
||
mov bp,di
|
||
pop di si cx bx ax
|
||
mov sp,bp
|
||
pop bp
|
||
retf
|
||
|
||
print ENDP
|
||
;================TESTS==============
|
||
;met dans DX le contenu de %0
|
||
;-> %0
|
||
;<-
|
||
;===================================
|
||
tests PROC FAR
|
||
ARG date:word=taille
|
||
push bp
|
||
mov bp,sp
|
||
push ax cx edx
|
||
mov dx,[date]
|
||
pop edx cx ax
|
||
pop bp
|
||
retf taille
|
||
tests ENDP
|
||
|
||
;================SHOWDATE==============
|
||
;Affiche la date contenu en %0
|
||
;-> %0
|
||
;<-
|
||
;======================================
|
||
ShowDate PROC FAR
|
||
ARG date:word=taille
|
||
push bp
|
||
mov bp,sp
|
||
push edx
|
||
xor edx,edx
|
||
mov dx,[date]
|
||
and dx,11111b
|
||
push edx
|
||
push 2
|
||
call showintl
|
||
push '/'
|
||
call showchar
|
||
mov dx,[date]
|
||
shr dx,5
|
||
and dx,111b
|
||
push edx
|
||
push 2
|
||
call showintl
|
||
push '/'
|
||
call showchar
|
||
mov dx,[date]
|
||
shr dx,8
|
||
and dx,11111111b
|
||
add dx,1956
|
||
push edx
|
||
push 4
|
||
call showintl
|
||
pop edx
|
||
pop bp
|
||
retf taille
|
||
ShowDate ENDP
|
||
|
||
;================SHOWTIME==============
|
||
;Affiche l'heure contenu en %0
|
||
;-> %0
|
||
;<-
|
||
;======================================
|
||
ShowTime PROC FAR
|
||
ARG time:word=taille
|
||
push bp
|
||
mov bp,sp
|
||
push edx
|
||
xor edx,edx
|
||
mov dx,[time]
|
||
shr dx,11
|
||
and dx,11111b
|
||
push edx
|
||
push 2
|
||
call showintl
|
||
push ':'
|
||
call showchar
|
||
mov dx,[time]
|
||
shr dx,5
|
||
and dx,111111b
|
||
push edx
|
||
push 2
|
||
call showintl
|
||
push ':'
|
||
call showchar
|
||
mov dx,[time]
|
||
and dx,11111b
|
||
shl dx,1
|
||
push edx
|
||
push 2
|
||
call showintl
|
||
pop edx
|
||
pop bp
|
||
retf taille
|
||
ShowTime ENDP
|
||
|
||
;================SHOWNAME==============
|
||
;Affiche le nom point<6E> par ds:%0
|
||
;-> ds:%0
|
||
;<-
|
||
;======================================
|
||
ShowName PROC FAR
|
||
ARG thename:word=taille
|
||
push bp
|
||
mov bp,sp
|
||
push cx si
|
||
mov si,[thename]
|
||
xor cx,cx
|
||
@@showthename:
|
||
push word ptr ds:[si]
|
||
call showchar
|
||
inc si
|
||
inc cx
|
||
cmp cx,8
|
||
jne @@suiteaname
|
||
push ' '
|
||
call showchar
|
||
@@suiteaname:
|
||
cmp cx,8+3
|
||
jb @@showthename
|
||
pop si cx
|
||
pop bp
|
||
retf taille
|
||
ShowName ENDP
|
||
|
||
;================SHOWATTR==============
|
||
;Affiche les attributs sp<73>cifi<66> par %0
|
||
;-> %0
|
||
;<-
|
||
;======================================
|
||
ShowAttr PROC FAR
|
||
ARG attr:word=taille
|
||
push bp
|
||
mov bp,sp
|
||
test [attr],00000001b
|
||
je @@noreadonly
|
||
push 'L'
|
||
jmp @@readonly
|
||
@@noreadonly:
|
||
push '-'
|
||
@@readonly:
|
||
call showchar
|
||
test [attr],00000010b
|
||
je @@nohidden
|
||
push 'C'
|
||
jmp @@hidden
|
||
@@nohidden:
|
||
push '-'
|
||
@@hidden:
|
||
call showchar
|
||
test [attr],00000100b
|
||
je @@nosystem
|
||
push 'S'
|
||
jmp @@system
|
||
@@nosystem:
|
||
push '-'
|
||
@@system:
|
||
call showchar
|
||
test [attr],00100000b
|
||
je @@noarchive
|
||
push 'A'
|
||
jmp @@archive
|
||
@@noarchive:
|
||
push '-'
|
||
@@archive:
|
||
call showchar
|
||
test [attr],00010000b
|
||
je @@nodirectory
|
||
push 'R'
|
||
jmp @@directory
|
||
@@nodirectory:
|
||
push '-'
|
||
@@directory:
|
||
call showchar
|
||
pop bp
|
||
retf taille
|
||
ShowAttr ENDP
|
||
|
||
;================SHOWSIZE==============
|
||
;Affiche le nom point<6E> par %0
|
||
;-> %0
|
||
;<-
|
||
;======================================
|
||
ShowSize PROC FAR
|
||
ARG thesize:dword=taille
|
||
push bp
|
||
mov bp,sp
|
||
push edx ds
|
||
push cs
|
||
pop ds
|
||
mov edx,[thesize]
|
||
cmp edx,1073741824
|
||
ja @@giga
|
||
cmp edx,1048576*9
|
||
ja @@mega
|
||
cmp edx,1024*9
|
||
ja @@kilo
|
||
push edx
|
||
push 4
|
||
call showintR
|
||
push offset unit
|
||
call showstring0
|
||
jmp @@finsize
|
||
@@kilo:
|
||
shr edx,10
|
||
push edx
|
||
push 4
|
||
call showintR
|
||
push offset unitkilo
|
||
call showstring0
|
||
jmp @@finsize
|
||
@@mega:
|
||
shr edx,20
|
||
push edx
|
||
push 4
|
||
call showintR
|
||
push offset unitmega
|
||
call showstring0
|
||
jmp @@finsize
|
||
@@giga:
|
||
shr edx,30
|
||
push edx
|
||
push 4
|
||
call showintR
|
||
push offset unitgiga
|
||
call showstring0
|
||
@@finsize:
|
||
pop ds edx
|
||
pop bp
|
||
retf taille
|
||
|
||
unit db ' o ',0
|
||
unitkilo db ' ko',0
|
||
unitmega db ' mo',0
|
||
unitgiga db ' go',0
|
||
ShowSize ENDP
|
||
|
||
;==========SHOWSPACE===========
|
||
;met un espace apr<70>s le curseur
|
||
;->
|
||
;<-
|
||
;==============================
|
||
showspace PROC FAR
|
||
push bp
|
||
mov bp,sp
|
||
push cx
|
||
mov cl,' '
|
||
call charout
|
||
clc
|
||
pop cx
|
||
pop bp
|
||
retf
|
||
showspace ENDP
|
||
|
||
;==========SHOWLINE===============
|
||
;remet le curseur text a la ligne avec un retfour chariot
|
||
;->
|
||
;<-
|
||
;=================================
|
||
showline PROC FAR
|
||
push ax
|
||
mov ah,06
|
||
int 47h
|
||
pop ax
|
||
retf
|
||
showline ENDP
|
||
|
||
;==========SHOWCHAR===========
|
||
;met un caract<63>re de code ASCII %0 apr<70>s le curseur
|
||
;-> %0
|
||
;<-
|
||
;=============================
|
||
showchar PROC FAR
|
||
ARG char:word=taille
|
||
push bp
|
||
mov bp,sp
|
||
push cx
|
||
mov cx,[char]
|
||
call charout
|
||
pop cx
|
||
pop bp
|
||
retf taille
|
||
showchar ENDP
|
||
|
||
;==========SHOWINT===========
|
||
;Affiche un entier %0 apr<70>s le curseur
|
||
;-> %0
|
||
;<-
|
||
;============================
|
||
ShowInt PROC FAR
|
||
ARG integer:dword=taille
|
||
push bp
|
||
mov bp,sp
|
||
push eax bx cx edx esi
|
||
xor cx,cx
|
||
mov eax,[integer]
|
||
mov esi,10
|
||
mov bx,offset showbuffer+27
|
||
@@decint:
|
||
xor edx,edx
|
||
div esi
|
||
add dl,'0'
|
||
inc cx
|
||
mov cs:[bx],dl
|
||
dec bx
|
||
cmp ax,0
|
||
jne @@decint
|
||
mov ax,cx
|
||
@@showinteger:
|
||
inc bx
|
||
mov cl,cs:[bx]
|
||
call charout
|
||
dec ax
|
||
jnz @@showinteger
|
||
pop esi edx cx bx eax
|
||
pop bp
|
||
retf taille
|
||
|
||
showbuffer db 50 dup (0FFh)
|
||
ShowInt ENDP
|
||
|
||
;==========SHOWINTL===========
|
||
;Affiche un entier %0 apr<70>s le curseur de taille %1 caract<63>re centr<74> a gauche
|
||
;-> %0 un entier % taille en caract<63>res
|
||
;<-
|
||
;===============================
|
||
ShowIntL PROC FAR
|
||
ARG sizeofint:word,integer:dword=taille
|
||
push bp
|
||
mov bp,sp
|
||
push eax bx cx edx esi di
|
||
mov di,[sizeofint]
|
||
xor cx,cx
|
||
mov eax,[integer]
|
||
mov esi,10
|
||
mov bx,offset showbuffer+27
|
||
@@decint:
|
||
xor edx,edx
|
||
div esi
|
||
add dl,'0'
|
||
inc cx
|
||
mov cs:[bx],dl
|
||
dec bx
|
||
cmp cx,di
|
||
jae @@nomuch
|
||
cmp ax,0
|
||
jne @@decint
|
||
mov ax,di
|
||
xchg cx,di
|
||
sub cx,di
|
||
@@rego:
|
||
mov byte ptr cs:[bx],'0'
|
||
dec bx
|
||
dec cx
|
||
jnz @@rego
|
||
jmp @@finishim
|
||
@@nomuch:
|
||
mov ax,di
|
||
@@finishim:
|
||
@@showinteger:
|
||
inc bx
|
||
mov cl,cs:[bx]
|
||
call charout
|
||
dec ax
|
||
jnz @@showinteger
|
||
pop di esi edx cx bx eax
|
||
pop bp
|
||
retf taille
|
||
showintl ENDP
|
||
|
||
;==========SHOWINTR===========
|
||
;Affiche un entier %0 apr<70>s le curseur de taille %1 caract<63>re centr<74> a droite
|
||
;-> %0 un entier % taille en caract<63>res
|
||
;<-
|
||
;===============================
|
||
ShowIntR PROC FAR
|
||
ARG sizeofint:word,integer:dword=taille
|
||
push bp
|
||
mov bp,sp
|
||
push eax bx cx edx esi di
|
||
mov di,[sizeofint]
|
||
xor cx,cx
|
||
mov eax,[integer]
|
||
mov esi,10
|
||
mov bx,offset showbuffer+27
|
||
@@decint:
|
||
xor edx,edx
|
||
div esi
|
||
add dl,'0'
|
||
inc cx
|
||
mov cs:[bx],dl
|
||
dec bx
|
||
cmp cx,di
|
||
jae @@nomuch
|
||
cmp ax,0
|
||
jne @@decint
|
||
mov ax,di
|
||
xchg cx,di
|
||
sub cx,di
|
||
@@rego:
|
||
mov byte ptr cs:[bx],' '
|
||
dec bx
|
||
dec cx
|
||
jnz @@rego
|
||
jmp @@finishim
|
||
@@nomuch:
|
||
mov ax,di
|
||
@@finishim:
|
||
@@showinteger:
|
||
inc bx
|
||
mov cl,cs:[bx]
|
||
call charout
|
||
dec ax
|
||
jnz @@showinteger
|
||
pop di esi edx cx bx eax
|
||
pop bp
|
||
retf taille
|
||
ShowIntR ENDP
|
||
|
||
;==========SHOWSIGNED===========
|
||
;Affiche un entier %0 de taille %1 apr<70>s le curseur
|
||
;-> %0 un entier, %1 la taille
|
||
;<-
|
||
;===============================
|
||
Showsigned PROC FAR
|
||
ARG sizeofint:word,integer:dword=taille
|
||
push bp
|
||
mov bp,sp
|
||
push ebx cx edx
|
||
mov ebx,[integer]
|
||
mov cx,[sizeofint]
|
||
xor edx,edx
|
||
cmp cx,1
|
||
ja @@signed16
|
||
mov dl,bl
|
||
cmp dl,7Fh
|
||
jbe @@notsigned
|
||
neg dl
|
||
jmp @@showminus
|
||
@@signed16:
|
||
cmp cx,2
|
||
ja @@signed32
|
||
mov dx,bx
|
||
cmp dx,7FFFh
|
||
jbe @@notsigned
|
||
neg dx
|
||
jmp @@showminus
|
||
@@signed32:
|
||
mov edx,ebx
|
||
cmp edx,7FFFFFFFh
|
||
jbe @@notsigned
|
||
neg edx
|
||
@@showminus:
|
||
push '-'
|
||
call showchar
|
||
@@notsigned:
|
||
push edx
|
||
call showint
|
||
pop edx cx ebx
|
||
pop bp
|
||
retf taille
|
||
Showsigned ENDP
|
||
|
||
;==========SHOWHEX===========
|
||
;Affiche un nombre hexad<61>cimal %0 de taille %1 apr<70>s le curseur
|
||
;-> %0 un entier, %1 la taille
|
||
;<-
|
||
;============================
|
||
ShowHex PROC FAR
|
||
ARG sizeofint:word,integer:dword=taille
|
||
push bp
|
||
mov bp,sp
|
||
push ax bx cx edx
|
||
mov edx,[integer]
|
||
mov cx,[sizeofint]
|
||
shr ax,2
|
||
sub cx,32
|
||
neg cx
|
||
shl edx,cl
|
||
mov ax,[sizeofint]
|
||
shr ax,2
|
||
@@Hexaize:
|
||
rol edx,4
|
||
mov bx,dx
|
||
and bx,0fh
|
||
mov cl,cs:[bx+offset Tab]
|
||
call charout
|
||
dec al
|
||
jnz @@Hexaize
|
||
pop edx cx bx ax
|
||
pop bp
|
||
retf taille
|
||
|
||
Tab db '0123456789ABCDEF'
|
||
ShowHex ENDP
|
||
|
||
;==========SHOWBIN===========
|
||
;Affiche un nombre binaire %0 de taille %1 apr<70>s le curseur
|
||
;-> %0 un entier, %1 la taille
|
||
;<-
|
||
;============================
|
||
Showbin PROC FAR
|
||
ARG sizeofint:word,integer:dword=taille
|
||
push bp
|
||
mov bp,sp
|
||
push ax cx edx
|
||
mov edx,[integer]
|
||
mov cx,[sizeofint]
|
||
sub cx,32
|
||
neg cx
|
||
shl edx,cl
|
||
mov ax,[sizeofint]
|
||
@@binaize:
|
||
rol edx,1
|
||
mov cl,'0'
|
||
adc cl,0
|
||
call charout
|
||
dec al
|
||
jnz @@binaize
|
||
pop edx cx ax
|
||
pop bp
|
||
retf taille
|
||
Showbin ENDP
|
||
|
||
;==========SHOWBCD===========
|
||
;Affiche un nombre en BCD %0 de taille %1 apr<70>s le curseur
|
||
;-> %0 un entier, %1 la taille
|
||
;<-
|
||
;============================
|
||
ShowBCD PROC FAR
|
||
ARG sizeofint:word,integer:dword=taille
|
||
push bp
|
||
mov bp,sp
|
||
push ax cx edx
|
||
mov edx,[integer]
|
||
mov ax,[sizeofint]
|
||
shr ax,2
|
||
sub cx,32
|
||
neg cx
|
||
shl edx,cl
|
||
@@BCDaize:
|
||
rol edx,4
|
||
mov cl,dl
|
||
and cl,0fh
|
||
add cl,'0'
|
||
call charout
|
||
dec al
|
||
jnz @@BCDaize
|
||
pop edx cx ax
|
||
pop bp
|
||
retf taille
|
||
ShowBCD ENDP
|
||
|
||
;==========SHOWSTRING===========
|
||
;Affiche une chaine de caract<63>re point<6E>e par ds:%1 apr<70>s le curseur
|
||
;-> ds:%1 pointeur chaine type pascal
|
||
;<-
|
||
;===============================
|
||
showstring PROC FAR
|
||
ARG pointer:word=taille
|
||
push bp
|
||
mov bp,sp
|
||
push bx cx si
|
||
mov si,[pointer]
|
||
mov bl,[si]
|
||
@@strinaize:
|
||
inc si
|
||
mov cl,[si]
|
||
call charout
|
||
dec bl
|
||
jnz @@strinaize
|
||
pop si cx bx
|
||
pop bp
|
||
retf taille
|
||
showstring ENDP
|
||
|
||
;==========SHOWSTRING0===========
|
||
;Affiche une chaine de caract<63>re point<6E>e par ds:%1 apr<70>s le curseur
|
||
;-> ds:%1 pointeur chaine type z<>ro terminal
|
||
;<-
|
||
;================================
|
||
showstring0 PROC FAR
|
||
ARG pointer:word=taille
|
||
push bp
|
||
mov bp,sp
|
||
push cx si
|
||
mov si,[pointer]
|
||
@@strinaize0:
|
||
mov cl,[si]
|
||
cmp cl,0
|
||
je @@no0
|
||
call charout
|
||
inc si
|
||
jmp @@strinaize0
|
||
@@no0:
|
||
pop si cx
|
||
pop bp
|
||
retf taille
|
||
showstring0 ENDP
|
||
|
||
;Envoie le caract<63>re CL vers l'ecran
|
||
charout PROC NEAR
|
||
push ax dx
|
||
mov ah,7
|
||
mov dl,cl
|
||
int 47h
|
||
pop dx ax
|
||
ret
|
||
charout ENDP
|
||
|
||
end start
|