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-18 22:08:57 +00:00
|
|
|
mov ebx, esp
|
|
|
|
mov ebx, 1*4(esp)
|
2022-08-07 20:10:08 +00:00
|
|
|
movb ah, 0x3E
|
|
|
|
int 0x21
|
|
|
|
jmp .sys_zret
|