15955282f6
- ensure es = ds = ss upon exit of each C runtime function - clear upper 16 bits of ebx before setting them to 0x0021, when invoking interrupt_ptr to simulate a RM int 0x21 - make _sys_exists use the transfer buffer (which it needs) - make _sys_rawread properly handle an end-of-file read (zero bytes read) - make argument to _sys_seterrno short --- after a failed int 0x21 call, only the lower 16 bits of eax hold the MS-DOs error code - _sys_rawlseek accepts only 3 longword arguments, not 4 (the offset is only 1 longword) - other minor fixes
28 lines
375 B
ArmAsm
28 lines
375 B
ArmAsm
#
|
|
! $Source$
|
|
! $State$
|
|
! $Revision$
|
|
|
|
! Declare segments (the order is important).
|
|
|
|
.sect .text
|
|
.sect .rom
|
|
.sect .data
|
|
.sect .bss
|
|
|
|
.sect .text
|
|
|
|
! Move the current file position for a file descriptor.
|
|
|
|
.define __sys_rawlseek
|
|
__sys_rawlseek:
|
|
movb ah, 0x42
|
|
mov ebx, esp
|
|
mov edx, 8(ebx)
|
|
mov ecx, edx
|
|
shr ecx, 16
|
|
movb al, 12(ebx)
|
|
mov ebx, 4(ebx)
|
|
int 0x21
|
|
jmp .sys_dxaxret
|