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
|
|
|
|
|
|
|
|
! Say whether a file descriptor is ready for input, i.e. reading from the
|
|
|
|
! fd will immediately return something.
|
|
|
|
|
|
|
|
.define __sys_isreadyr
|
|
|
|
__sys_isreadyr:
|
2022-08-18 22:08:57 +00:00
|
|
|
mov ebx, esp
|
2022-08-17 22:24:08 +00:00
|
|
|
mov eax, 0x4406
|
|
|
|
mov ebx, 4(ebx)
|
2022-08-07 20:10:08 +00:00
|
|
|
int 0x21
|
|
|
|
jnc ok
|
|
|
|
movb al, 0
|
|
|
|
ok:
|
2022-08-18 22:08:57 +00:00
|
|
|
o16 cbw
|
|
|
|
cwde
|
2022-08-07 20:10:08 +00:00
|
|
|
ret
|