mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-24 16:07:19 +08:00
19 lines
240 B
ArmAsm
19 lines
240 B
ArmAsm
.globl _findfirst
|
|
_findfirst:
|
|
pushl %ebx
|
|
pushl %esi
|
|
pushl %edi
|
|
movl 20(%esp),%edx
|
|
movb $0x1a,%ah
|
|
int $0x21
|
|
|
|
movl 16(%esp),%edx
|
|
movl 24(%esp),%ecx
|
|
movb $0x4e,%ah
|
|
int $0x21
|
|
|
|
popl %edi
|
|
popl %esi
|
|
popl %ebx
|
|
jmp syscall_check
|