Mercurial > hg > Members > kono > nitros9-code
annotate level1/modules/rfmdesc.asm @ 3169:1ff3d7673e36
mc09 l2: bring sys/makefile in line with latest organisation for other platforms
Revise bootfiles/makefile to remove sysgo from bootfile - it can be
found on the root of the disk.
author | Neal Crook <foofoobedoo@gmail.com> |
---|---|
date | Mon, 17 Apr 2017 22:59:28 +0100 |
parents | a7c66ffbec7c |
children |
rev | line source |
---|---|
2468 | 1 ******************************************************************** |
2 * RFMDesc - Remote File Manager Device Descriptor Template | |
3 * | |
4 * $Id$ | |
5 * | |
6 * Edt/Rev YYYY/MM/DD Modified by | |
7 * Comment | |
8 * ------------------------------------------------------------------ | |
9 * 0 2003/03/28 Boisy G. Pitre | |
10 * Created. | |
11 | |
12 nam RFMDesc | |
13 ttl Remote File Manager Device Descriptor Template | |
14 | |
15 ifp1 | |
16 use defsfile | |
17 endc | |
18 | |
19 | |
20 tylg set Devic+Objct | |
21 atrv set ReEnt+rev | |
22 rev set $00 | |
23 | |
2798
b70d93f8d7ce
Updated coco1/modules/makefile and coco3/modules/makefile to help resolve issues with i(x) and s(x) descriptors.
drencor-xeen
parents:
2468
diff
changeset
|
24 IFNDEF DNum |
2468 | 25 DNum set 0 |
2798
b70d93f8d7ce
Updated coco1/modules/makefile and coco3/modules/makefile to help resolve issues with i(x) and s(x) descriptors.
drencor-xeen
parents:
2468
diff
changeset
|
26 ENDC |
2468 | 27 |
28 mod eom,name,tylg,atrv,mgrnam,drvnam | |
29 | |
30 fcb DIR.!SHARE.!PEXEC.!PWRIT.!PREAD.!EXEC.!UPDAT. mode byte | |
31 fcb HW.Page extended controller address | |
32 fdb $0000+DNum physical controller address | |
33 fcb initsize-*-1 initilization table size | |
34 fcb DT.RFM device type:0=scf,1=rbf,2=pipe,3=scf | |
2858
632187a1083e
Spell DNum consistently
Tormod Volden <debian.tormod@gmail.com>
parents:
2798
diff
changeset
|
35 fcb DNum drive number |
2468 | 36 initsize equ * |
37 | |
38 IFNE DD | |
39 name fcs /DD/ | |
40 ELSE | |
41 name fcc /Y/ | |
2915
a7c66ffbec7c
Demystify string character calculation involving DNum or ITDRV
Tormod Volden <debian.tormod@gmail.com>
parents:
2858
diff
changeset
|
42 fcb '0+DNum+$80 |
2468 | 43 ENDC |
44 | |
45 mgrnam fcs /RFM/ | |
46 drvnam fcs /RFMDrv/ | |
47 | |
48 | |
49 emod | |
50 eom equ * | |
51 end | |
52 |