2022-08-07 20:10:08 +00:00
|
|
|
#
|
|
|
|
! $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
|
2022-08-18 22:08:57 +00:00
|
|
|
mov ebx, esp
|
2022-08-24 15:17:04 +00:00
|
|
|
mov edx, 8(ebx)
|
|
|
|
mov ecx, edx
|
|
|
|
shr ecx, 16
|
|
|
|
movb al, 12(ebx)
|
|
|
|
mov ebx, 4(ebx)
|
2022-08-07 20:10:08 +00:00
|
|
|
int 0x21
|
|
|
|
jmp .sys_dxaxret
|