Mercurial > hg > Members > kono > nitros9-code
annotate lib/kreiderclib/open.as @ 3100:ed4c9b04f74e
makefile: Remove hg update commands
We don't want makefiles to play with mercurial commands.
Particularly not when we are about to push a snapshot.
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sun, 28 Feb 2016 21:37:42 +0100 |
parents | 1647f1874cdf |
children |
rev | line source |
---|---|
2824 | 1 * Disassembly by Os9disasm of open.r |
2 | |
3 section code | |
4 | |
5 * OS-9 system function equates | |
6 | |
7 I$Open equ $84 | |
8 I$Close equ $8f | |
9 | |
10 open: ldx 2,s | |
11 lda 5,s | |
12 os9 I$Open | |
13 lblo _os9err | |
14 tfr a,b | |
15 clra | |
16 rts | |
17 close: lda 3,s | |
18 os9 I$Close | |
19 lbra _sysret | |
20 | |
21 endsect | |
22 |