Mercurial > hg > Members > kono > nitros9-code
annotate level1/cmds/load.as @ 2786:e333ec1907ef lwtools-port
Updated makefile(s) so correct coco1 dw boot and dwio.sb files are used.
Updated level1/coco1/modules/makefile so that boot_dw_coco1
and dwio_coco1.sb get created.
Updated level1/coco1/bootfiles/makefile added detection of PORT
status so if coco1 is detected then dwio_coco1.sb and
boot_dw_coco1 are used in place of dwio.sb and boot_dw.
author | drencor-xeen |
---|---|
date | Sun, 27 Jan 2013 00:14:03 -0600 |
parents | 03f26e88b809 |
children | 28b6ec8a14d5 |
rev | line source |
---|---|
1869 | 1 ******************************************************************** |
2 * Load - Load a module | |
3 * | |
4 * $Id$ | |
5 * | |
6 * Edt/Rev YYYY/MM/DD Modified by | |
7 * Comment | |
8 * ------------------------------------------------------------------ | |
9 * 4 ????/??/?? | |
10 * From Tandy OS-9 Level One VR 02.00.00. | |
11 | |
12 nam Load | |
13 ttl Load a module | |
14 | |
15 use defsfile.d | |
16 | |
17 rev set $00 | |
18 edition set 4 | |
19 | |
2782
aaba193af04f
Updated code to use lwasm/lwlink
Boisy Pitre <boisy.pitre@nuance.com>
parents:
1869
diff
changeset
|
20 section data |
1869 | 21 u0000 rmb 200 |
22 endsect | |
23 | |
2782
aaba193af04f
Updated code to use lwasm/lwlink
Boisy Pitre <boisy.pitre@nuance.com>
parents:
1869
diff
changeset
|
24 * psect load_a,Prgrm+Objct,ReEnt+rev,edition,200,start |
aaba193af04f
Updated code to use lwasm/lwlink
Boisy Pitre <boisy.pitre@nuance.com>
parents:
1869
diff
changeset
|
25 section text |
aaba193af04f
Updated code to use lwasm/lwlink
Boisy Pitre <boisy.pitre@nuance.com>
parents:
1869
diff
changeset
|
26 |
1869 | 27 start os9 F$Load |
28 bcs Exit | |
29 lda ,x | |
30 cmpa #C$CR | |
31 bne start | |
32 clrb | |
33 Exit os9 F$Exit | |
34 | |
35 endsect |