Mercurial > hg > Members > kono > nitros9-code
comparison level1/modules/term_80.asm @ 2690:6e40b043d3e0 lwtools-port
Removed coco port, added coco1 and coco2 ports.
Cleaned term* descriptors to make unified between Level 1 and Level 2
author | Boisy Pitre <boisy.pitre@nuance.com> |
---|---|
date | Thu, 19 Jul 2012 10:09:15 -0500 |
parents | level1/modules/term80.asm@f91dc5c378f6 |
children | 987f995993c3 |
comparison
equal
deleted
inserted
replaced
2689:80d85940d03b | 2690:6e40b043d3e0 |
---|---|
1 ******************************************************************** | |
2 * TERM - Word-Pak Device Descriptor | |
3 * | |
4 * $Id$ | |
5 * | |
6 * Edt/Rev YYYY/MM/DD Modified by | |
7 * Comment | |
8 * ------------------------------------------------------------------ | |
9 * ????/??/?? | |
10 * From Tandy OS-9 Level One VR 02.00.00 | |
11 | |
12 nam TERM | |
13 ttl Word-Pak Device Descriptor | |
14 | |
15 * Disassembled 98/08/23 17:19:25 by Disasm v1.6 (C) 1988 by RML | |
16 | |
17 ifp1 | |
18 use defsfile | |
19 ; use scfdefs | |
20 use cocovtio.d | |
21 endc | |
22 | |
23 tylg set Devic+Objct | |
24 atrv set ReEnt+rev | |
25 rev set $00 | |
26 | |
27 mod eom,name,tylg,atrv,mgrnam,drvnam | |
28 | |
29 fcb UPDAT. mode byte | |
30 fcb HW.Page extended controller address | |
31 fdb $C000 physical controller address | |
32 fcb initsize-*-1 initilization table size | |
33 fcb DT.SCF device type:0=scf,1=rbf,2=pipe,3=scf | |
34 fcb $00 case:0=up&lower,1=upper only | |
35 fcb $01 backspace:0=bsp,1=bsp then sp & bsp | |
36 fcb $00 delete:0=bsp over line,1=return | |
37 fcb $01 echo:0=no echo | |
38 fcb $01 auto line feed:0=off | |
39 fcb $00 end of line null count | |
40 fcb $01 pause:0=no end of page pause | |
41 fcb 24 lines per page | |
42 fcb C$BSP backspace character | |
43 fcb C$DEL delete line character | |
44 fcb C$CR end of record character | |
45 fcb C$EOF end of file character | |
46 fcb C$RPRT reprint line character | |
47 fcb C$RPET duplicate last line character | |
48 fcb C$PAUS pause character | |
49 fcb C$INTR interrupt character | |
50 fcb C$QUIT quit character | |
51 fcb C$BSP backspace echo character | |
52 fcb C$BELL line overflow character (bell) | |
53 fcb ModCoWP init value for dev ctl reg | |
54 fcb $00 baud rate | |
55 fdb name copy of descriptor name address | |
56 fcb $00 acia xon char | |
57 fcb $00 acia xoff char | |
58 fcb 80 (szx) number of columns for display | |
59 fcb 24 (szy) number of rows for display | |
60 initsize equ * | |
61 | |
62 name fcs /TERM/ | |
63 mgrnam fcs /SCF/ | |
64 drvnam fcs /VTIO/ | |
65 | |
66 emod | |
67 eom equ * | |
68 end | |
69 |