mirror of https://github.com/zxdos/zxuno.git
29 lines
739 B
Modula-2
29 lines
739 B
Modula-2
; esxdos.def
|
|
;
|
|
; SPDX-FileCopyrightText: Copyright (C) 2019, 2021 Antonio Villena
|
|
;
|
|
; SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
; Compatible compilers:
|
|
; SJAsmPlus, <https://github.com/sjasmplus/sjasmplus/>
|
|
|
|
ifndef esxdos_def_included
|
|
define esxdos_def_included
|
|
|
|
define FA_READ 0x01
|
|
define FA_WRITE 0x02
|
|
define FA_OPEN_AL 0x08
|
|
define M_GETSETDRV 0x89
|
|
define F_OPEN 0x9a
|
|
define F_CLOSE 0x9b
|
|
define F_READ 0x9d
|
|
define F_WRITE 0x9e
|
|
define F_FSTAT 0xa1
|
|
|
|
macro esxdos dato
|
|
rst $08
|
|
defb dato
|
|
endm
|
|
|
|
endif ; !esxdos_def_included
|