Mercurial > hg > Members > kono > nitros9-code
annotate level2/modules/ssp.asm @ 508:02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
author | boisy |
---|---|
date | Thu, 10 Oct 2002 14:56:02 +0000 |
parents | b3bfa479f8d0 |
children | d13864ef3317 |
rev | line source |
---|---|
508
02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
boisy
parents:
372
diff
changeset
|
1 ******************************************************************** |
02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
boisy
parents:
372
diff
changeset
|
2 * SSP - Speech-Sound Pak device descriptor |
02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
boisy
parents:
372
diff
changeset
|
3 * |
0 | 4 * by Bruce Isted (CIS 76625,2273) |
5 * released to the Public Domain 87/05/02 | |
6 | |
508
02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
boisy
parents:
372
diff
changeset
|
7 * $Id$ |
02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
boisy
parents:
372
diff
changeset
|
8 * |
02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
boisy
parents:
372
diff
changeset
|
9 * Ed. Comments Who YY/MM/DD |
02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
boisy
parents:
372
diff
changeset
|
10 * ------------------------------------------------------------------ |
02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
boisy
parents:
372
diff
changeset
|
11 |
0 | 12 nam SSP |
13 ttl Speech-Sound Pak device descriptor | |
14 | |
15 ifp1 | |
16 use defsfile | |
17 endc | |
18 | |
19 PageAddr equ $07 extended page address (set to $FF for level 1) | |
20 PortAddr equ $FF7D Speech-Sound Pak base address | |
21 SVrsn equ $01 | |
22 | |
23 mod SEnd,SNam,Devic+Objct,ReEnt+SVrsn,MgrNam,DrivrNam | |
24 fcb SHARE.+PWRIT.+WRITE. device capabilities | |
25 fcb PageAddr | |
26 fdb PortAddr | |
27 fcb SOptEnd-*-1 option table size | |
28 fcb DT.SCF device type | |
29 fcb $00 case (0=both, 1=upper only) | |
30 fcb $00 backspace (0=bse, 1=bse,sp,bse) | |
31 fcb $01 delete (0=bse over line, 1=CR) | |
32 fcb $00 echo (1=echo) | |
33 fcb $00 auto LF (0=no auto LF) | |
34 fcb $00 EOL null count | |
35 fcb $00 pause (1=page pause) | |
36 fcb $00 lines per page | |
37 fcb C$BSP backspace character | |
38 fcb $18 delete line character | |
39 fcb C$CR end of record character | |
40 fcb $00 end of file character | |
41 fcb $04 reprint line character | |
42 fcb $01 dup last line character | |
43 fcb $00 pause character | |
44 fcb $00 interrupt character | |
45 fcb $00 quit character | |
46 fcb $00 backspace echo character (bse) | |
47 fcb $00 line overflow character | |
48 fcb $00 initialization value (parity) | |
49 fcb $00 baud rate | |
50 fdb $0000 attached device name offset | |
51 fcb $00 xon character | |
52 fcb $00 xoff character | |
53 SOptEnd equ * | |
54 SNam fcs "SSP" | |
55 MgrNam fcs "SCF" | |
56 DrivrNam fcs "SSPak" | |
57 | |
58 emod | |
59 SEnd equ * | |
60 end | |
61 |