-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathFILES.ASM
232 lines (178 loc) · 4.54 KB
/
FILES.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
;---------------------------------------------;
; FILE ACCES LIB files.asm ;
; ;
; header file : files.ash ;
;---------------------------------------------;
LOCALS
.386
GROUP DGROUP _DATA,_BSS
_DATA SEGMENT PUBLIC USE32 DWORD 'DATA'
message01 db "reading$"
message02 db "file saving error..$"
message03 db "file saving OK!!$"
_DATA ENDS
_BSS SEGMENT PUBLIC USE32 DWORD 'BSS'
_BSS ENDS
_TEXT SEGMENT PUBLIC USE32 DWORD 'CODE'
ASSUME cs:_TEXT,ds:DGROUP,es:DGROUP
;------------------------------------------
; input
; esi : filemame(ASCIIZ)
; al : open mode 0 read only
; 1 write only
; 2 read/write
; output
; ax : file handle
;------------------------------------------
PUBLIC open_file
open_file PROC
mov ah,3dh ; open file
mov edx,esi
int 21h
jc @@error
ret
@@error:
ret
open_file ENDP
;------------------------------------------
; input
; ax : file handle
;------------------------------------------
PUBLIC close_file
close_file PROC
mov bx,ax ; bx : handle
mov ah,3eh ; close
int 21h
ret
close_file ENDP
;------------------------------------------
; ax : file handle
; edi : memory pointer
; ecx : read bytes
;------------------------------------------
PUBLIC read_file
read_file PROC
mov bx,ax ; file handle
mov ah,3fh ; read
mov edx,edi
int 21h
jc @@error
ret
@@error:
mov ah,09h
mov edx,offset message01 ; "file reading error.."
int 21h
ret
read_file ENDP
;------------------------------------------
; ax : file handle
; esi : memory pointer
; ecx : read bytes
;------------------------------------------
PUBLIC write_file
write_file PROC
mov ebx,eax ; file handle
mov ah,40h ; write
mov edx,esi ; esi : pointer of data
int 21h ; write file
jc @@error
ret
@@error:
mov ah,09h
mov edx,offset message02 ; "file saving error.."
int 21h
ret
write_file ENDP
;-----------------------------------------------
; input
; al : mode 0 start point + offset
; 1 current point + offset
; 2 end point + offset
; bx : file handle
; ecx : moving bytes
; output
; eax : new pointer
;-----------------------------------------------
PUBLIC move_file_pointer
move_file_pointer PROC
mov dx,cx
shr ecx,16
mov ah,42h
int 21h
jc @@error
shl eax,16
mov ax,dx
rol eax,16
ret
@@error:
ret
move_file_pointer ENDP
;------------------------------------------
; esi : filemame(ASCIIZ)
; edi : pointer
; ecx : file length
;------------------------------------------
PUBLIC load_file
load_file PROC
mov ah,3dh ; open file
mov al,0 ; read only
mov edx,esi
int 21h
jc @@error
mov bx,ax ; file handle
mov ah,3fh ; read
mov edx,edi
int 21h
jc @@error
mov ah,3eh ; close
int 21h
ret
@@error:
mov ah,09h
mov edx,offset message01 ; "file loading error.."
int 21h
ret
load_file ENDP
;--------------------------------------
; esi : pointer
; edi : file name
; ecx : length
;--------------------------------------
PUBLIC save_file
save_file PROC
@@open:
mov ah,3dh ; open file
mov al,1 ; write only
mov edx,edi
int 21h
jc @@openerror
mov bx,ax ; file handle
mov ah,40h ; write
mov edx,esi ; esi : pointer of data
int 21h ; write file
jc @@error
jmp @@out
@@openerror:
push ecx
mov ah,3ch ; create file
mov cx,0 ; write only
mov edx,edi ; edi : pointer of file name
int 21h
pop ecx
jc @@error
jmp @@open
@@error:
mov ah,09h
mov edx,offset message02 ; "file save error.."
int 21h
ret
@@out:
mov ah,3eh ; close
int 21h
; mov ah,09h
; mov edx,offset message03 ; "file save OK!.."
; int 21h
ret
save_file ENDP
_TEXT ENDS
END