Mercurial > hg > Members > kono > nitros9-code
annotate level1/modules/rfmdrv.asm @ 2910:87f2133301b0
Remove execute permissions from files that should not have it
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sat, 11 Jan 2014 21:52:42 +0100 |
parents | 8d9ca53903e3 |
children |
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 | |
2659
95c7e747c154
Added support for virtual window (/Zx) devices
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2450
diff
changeset
|
10 use rfm.d |
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 |