24 lines
250 B
ArmAsm
24 lines
250 B
ArmAsm
|
#
|
||
|
! $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:
|
||
|
mov bx, sp
|
||
|
mov bx, 2(bx)
|
||
|
movb ah, 0x3E
|
||
|
int 0x21
|
||
|
jmp .sys_zret
|