Mercurial > hg > Members > kono > nitros9-code
annotate level1/modules/rfmdrv.asm @ 2682:f91dc5c378f6 lwtools-port
Remove references to include scfdefs
There is no scfdefs file so don't try to include it.
author | William Astle <lost@l-w.ca> |
---|---|
date | Sun, 10 Jun 2012 15:33:52 -0600 |
parents | a4ac68ad79e4 |
children | 674fcee0851b |
rev | line source |
---|---|
2435 | 1 ******************************************************************** |
2 * rfmdrv - remote file manager driver | |
3 * | |
4 | |
5 nam rfmdrv | |
6 ttl Remote file manager driver | |
7 | |
8 ifp1 | |
9 use defsfile | |
2682
f91dc5c378f6
Remove references to include scfdefs
William Astle <lost@l-w.ca>
parents:
2450
diff
changeset
|
10 ; use rfmdefs |
2435 | 11 endc |
12 | |
13 tylg set Drivr+Objct | |
14 atrv set ReEnt+rev | |
15 rev set $01 | |
16 edition set $01 | |
17 | |
18 mod eom,name,tylg,atrv,start,size | |
19 | |
20 | |
2450 | 21 org V.RFM |
2435 | 22 size equ . |
23 | |
2448
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
24 fcb DIR.+SHARE.+PEXEC.+PWRIT.+PREAD.+EXEC.+UPDAT. |
2440 | 25 |
2436 | 26 |
2435 | 27 name fcs /rfmdrv/ |
28 fcb edition | |
29 | |
2448
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
30 start lbra Init |
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
31 lbra Read |
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
32 lbra Write |
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
33 lbra GetStat |
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
34 lbra SetStat |
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
35 * lbra Term |
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
36 |
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
37 Init |
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
38 Read |
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
39 Write |
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
40 GetStat |
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
41 SetStat |
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
42 nop |
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
43 clrb |
c90536ef4b8c
Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents:
2440
diff
changeset
|
44 rts |
2435 | 45 |
46 emod | |
47 eom equ * | |
48 end |