Mercurial > hg > Members > kono > nitros9-code
annotate level1/modules/pipe.asm @ 3059:412772d32331
level1/ioman: Fix code to use R$ macro defines
author | Robert Gault <robert.gault@att.net> |
---|---|
date | Thu, 29 Jan 2015 22:50:26 +0100 |
parents | db97356e3648 |
children |
rev | line source |
---|---|
112 | 1 ******************************************************************** |
1283 | 2 * Pipe - Pipe device descriptor |
112 | 3 * |
4 * $Id$ | |
5 * | |
1283 | 6 * Edt/Rev YYYY/MM/DD Modified by |
7 * Comment | |
112 | 8 * ------------------------------------------------------------------ |
9 | |
0 | 10 nam Pipe |
1283 | 11 ttl Pipe device descriptor |
0 | 12 |
13 * Disassembled 98/08/23 21:15:32 by Disasm v1.6 (C) 1988 by RML | |
14 | |
15 ifp1 | |
16 use defsfile | |
2809
db97356e3648
Renamed refs to pipedefs to pipe.d
Boisy Pitre <boisy.pitre@nuance.com>
parents:
1286
diff
changeset
|
17 use pipe.d |
0 | 18 endc |
19 | |
20 tylg set Devic+Objct | |
21 atrv set ReEnt+rev | |
1286 | 22 rev set $00 |
0 | 23 |
24 mod eom,name,tylg,atrv,mgrnam,drvnam | |
25 | |
26 fcb READ.+WRITE. mode byte | |
27 fcb $00 extended controller address | |
28 fdb $0000 physical controller address | |
29 fcb initsize-*-1 initilization table size | |
30 fcb DT.Pipe device type:0=scf,1=rbf,2=pipe,3=scf | |
31 initsize equ * | |
32 | |
33 name fcs /Pipe/ | |
34 mgrnam fcs /PipeMan/ | |
35 drvnam fcs /Piper/ | |
36 | |
37 emod | |
38 eom equ * | |
39 end | |
40 |