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
/
ER_DSKFL.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-08-21
|
282 b
|
23 lines
include asm.inc
public err_disk_full
.const
public ertx_disk_full
ertx_disk_full db 'Disk full',0
.code
extn set_strerror
;; err disk full
;
; exit Cf 1
; uses AX
;
err_disk_full proc
lea ax,ertx_disk_full
jmp set_strerror
err_disk_full endp
end