2007-02-20 00:25:12 +00:00
|
|
|
#
|
|
|
|
! $Source$
|
|
|
|
! $State$
|
2007-02-20 00:31:54 +00:00
|
|
|
! $Revision$
|
2007-02-20 00:25:12 +00:00
|
|
|
|
|
|
|
! Declare segments (the order is important).
|
|
|
|
|
|
|
|
.sect .text
|
|
|
|
.sect .rom
|
|
|
|
.sect .data
|
|
|
|
.sect .bss
|
|
|
|
|
|
|
|
.sect .text
|
|
|
|
|
|
|
|
! Reads a single byte.
|
|
|
|
|
|
|
|
.define __sys_rawread
|
|
|
|
__sys_rawread:
|
|
|
|
xorb ah, ah
|
|
|
|
int 0x16
|
|
|
|
xorb ah, ah
|
|
|
|
ret
|
|
|
|
|