home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
MAGAZINE
/
MISC
/
PJ_9_6.ZIP
/
ALIB.ZIP
/
MOVEFPTR.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Assembly Source File
|
1991-06-25
|
318 b
|
28 lines
include asm.inc
public move_file_pointer
.code
extn ms_dos
;; move file pointer
;
; entry BX file handle
; DX AX file position
; exit Cf if error
; uses AX
;
move_file_pointer proc
push cx
mov cx,dx
mov dx,ax
mov ax,4200h
call ms_dos
pop cx
ret
move_file_pointer endp
end