ack/plat/msdos386/libsys/sys_exists.s
David Given dc1f69be83 Most of read and write now works; filename-based operations partially work; but
there's a nasty memory corruption somewhere which needs investigating.
2022-08-19 00:08:57 +02:00

26 lines
314 B
ArmAsm

#
! $Source$
! $State$
! $Revision$
! Declare segments (the order is important).
.sect .text
.sect .rom
.sect .data
.sect .bss
.sect .text
! Say whether a file exists with the given name.
.define __sys_exists
__sys_exists:
mov ebx, esp
mov edx, 4(ebx)
mov eax, 0x4300
int 0x21
sbb eax, eax
inc eax
ret