Mercurial > hg > Members > kono > nitros9-code
annotate lib/kreiderclib/mod.as @ 3285:345ff5806dd7
Correct coco.d filename in shipped Defsfile files
It seems that 8 years ago in commit 2624:b8c7b7fbf3c9 the coco defs were put into a
new "coco.d" (from "systype"), and the various level*/<port>/defsfile were updated.
However, the level*/<port>/defs/Defsfile (that are copied to the disk images under
DEFS) were apparently wrongly updated.
author | hpmachining <aur@hpminc.com> |
---|---|
date | Thu, 18 Jun 2020 20:29:32 +0200 |
parents | 1647f1874cdf |
children |
rev | line source |
---|---|
2824 | 1 * Disassembly by Os9disasm of mod.r |
2 | |
3 section code | |
4 | |
5 * OS-9 system function equates | |
6 | |
7 F$Link equ $00 | |
8 F$Load equ $01 | |
9 F$UnLink equ $02 | |
10 | |
11 modlink: pshs y,u | |
12 ldx 6,s | |
13 lda 9,s | |
14 asla | |
15 asla | |
16 asla | |
17 asla | |
18 ora 11,s | |
19 os9 F$Link | |
20 L000f tfr u,d | |
21 puls y,u | |
22 lblo _os9err | |
23 rts | |
24 modload: pshs y,u | |
25 ldx 6,s | |
26 lda 9,s | |
27 asla | |
28 asla | |
29 asla | |
30 asla | |
31 ora 11,s | |
32 os9 F$Load | |
33 bra L000f | |
34 munlink: pshs u | |
35 ldu 4,s | |
36 os9 F$UnLink | |
37 puls u | |
38 lbra _sysret | |
39 | |
40 endsect | |
41 |