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
|
|
|
|
|
|
|
|
! Close a file.
|
|
|
|
|
|
|
|
.define _close
|
|
|
|
_close:
|
2022-08-17 20:34:06 +00:00
|
|
|
mov ebx, sp
|
|
|
|
mov ebx, 4(ebx)
|
2022-08-07 20:10:08 +00:00
|
|
|
movb ah, 0x3E
|
|
|
|
int 0x21
|
|
|
|
jmp .sys_zret
|