Mercurial > hg > Members > kono > nitros9-code
annotate level1/modules/rfmdesc.asm @ 2798:b70d93f8d7ce lwtools-port
Updated coco1/modules/makefile and coco3/modules/makefile to help resolve issues with i(x) and s(x) descriptors.
Updated level1/coco1/modules/makefile & level2/coco3/modules/makefile
so that correct values would be sent to assembler when
building superdesc.asm for s(x).dd and i(x).dd descriptors.
author | drencor-xeen |
---|---|
date | Mon, 28 Jan 2013 16:13:05 -0600 |
parents | f2592e82a68d |
children | 632187a1083e |
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 | |
35 fcb dnum drive number | |
36 initsize equ * | |
37 | |
38 IFNE DD | |
39 name fcs /DD/ | |
40 ELSE | |
41 name fcc /Y/ | |
42 fcb 176+DNum | |
43 ENDC | |
44 | |
45 mgrnam fcs /RFM/ | |
46 drvnam fcs /RFMDrv/ | |
47 | |
48 | |
49 emod | |
50 eom equ * | |
51 end | |
52 |