-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.asm
69 lines (53 loc) · 1.45 KB
/
functions.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
strLen:
mov ebx,eax ; EAX y EBX apuntan a la misma posición del String
.loop:
cmp byte [eax], 0 ; el String antes de llamar al procedimiento debe estar en EBX
jz .finished
inc eax
jmp .loop
.finished:
sub eax,ebx ; compara la diferencia de donde empezó el String hasta donde acabó, para hallar el tamaño
ret
char2Bin:
mov ecx,7
mov edx,edi ; Guardo la posición inicial del buffer
.nextBit:
shl bl,1
setc byte[edi]
;add byte[edi],'0'
inc edi
dec ecx
jns .nextBit
ret
errorParams:
mov eax,4 ; Servicio sys_write() Imprimimos el Mensaje de Error
mov ebx,1 ; STDOUT - consola
mov ecx,MSGError1
mov edx,MSGError1Len
int 80h
jmp exit ; acabamos el programa
errorOpeningFile:
mov eax,4 ; Servicio sys_write() Imprimimos el Mensaje de Error
mov ebx,1 ; STDOUT - consola
mov ecx,MSGError2
mov edx,MSGError2Len
int 80h
jmp exit ; acabamos el programa
errorReadingFile:
mov eax,4 ; Servicio sys_write() Imprimimos el Mensaje de Error
mov ebx,1 ; STDOUT - consola
mov ecx,MSGError3
mov edx,MSGError3Len
int 80h
jmp exit ; acabamos el programa
errorFormat:
mov eax,4 ; Servicio sys_write() Imprimimos el Mensaje de Error
mov ebx,1 ; STDOUT - consola
mov ecx,MSGError4
mov edx,MSGError4Len
int 80h
jmp exit ; acabamos el programa
exit:
mov eax,1 ; Acabamos la Ejecución del programa
mov ebx,0
int 80h