Mercurial > hg > Members > kono > nitros9-code
annotate level2/modules/term_vdg.asm @ 2018:505c8d261ef6
Futher division of krn, commnents added
author | boisy |
---|---|
date | Wed, 08 Mar 2006 01:58:50 +0000 |
parents | 8ae0268695b7 |
children | b8c7b7fbf3c9 |
rev | line source |
---|---|
508
02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
boisy
parents:
434
diff
changeset
|
1 ******************************************************************** |
1953 | 2 * Term - VTIO VDG Device Descriptor |
508
02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
boisy
parents:
434
diff
changeset
|
3 * |
02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
boisy
parents:
434
diff
changeset
|
4 * $Id$ |
02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
boisy
parents:
434
diff
changeset
|
5 * |
1348 | 6 * Edt/Rev YYYY/MM/DD Modified by |
7 * Comment | |
508
02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
boisy
parents:
434
diff
changeset
|
8 * ------------------------------------------------------------------ |
02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
boisy
parents:
434
diff
changeset
|
9 |
0 | 10 nam Term |
1953 | 11 ttl VTIO VDG Device Descriptor |
0 | 12 |
13 ifp1 | |
14 use defsfile | |
15 endc | |
16 | |
17 tylg set Devic+Objct | |
18 atrv set ReEnt+rev | |
1289 | 19 rev set $00 |
0 | 20 |
21 * Window descriptor definitions | |
22 szx set 32 number of columns for display | |
23 szy set 16 number for rows for display | |
1953 | 24 IFGT Level-1 |
0 | 25 wnum set 0 window number |
26 sty set 1 window type | |
27 cpx set 0 x cursor position | |
28 cpy set 0 y cursor position | |
29 prn1 set Black. foreground color | |
30 prn2 set Green. background color | |
31 prn3 set Black. border color | |
1953 | 32 ENDC |
0 | 33 |
34 mod eom,name,tylg,atrv,mgrnam,drvnam | |
35 | |
1497 | 36 fcb UPDAT. mode byte |
385 | 37 fcb HW.Page extended controller address |
0 | 38 fdb A.TermV physical controller address |
39 fcb initsize-*-1 initilization table size | |
385 | 40 fcb DT.SCF device type:0=scf,1=rbf,2=pipe,3=scf |
0 | 41 fcb $00 case:0=up&lower,1=upper only |
42 fcb $01 backspace:0=bsp,1=bsp then sp & bsp | |
43 fcb $00 delete:0=bsp over line,1=return | |
44 fcb $01 echo:0=no echo | |
45 fcb $01 auto line feed:0=off | |
46 fcb $00 end of line null count | |
47 fcb $01 pause:0=no end of page pause | |
1953 | 48 fcb szy lines per page |
0 | 49 fcb C$BSP backspace character |
50 fcb C$DEL delete line character | |
51 fcb C$CR end of record character | |
52 fcb C$EOF end of file character | |
434
ccbef8e5ffbc
Changed dup and rep chars to take advantage of enhanced SCF line editing
boisy
parents:
385
diff
changeset
|
53 fcb C$RARR reprint line character |
ccbef8e5ffbc
Changed dup and rep chars to take advantage of enhanced SCF line editing
boisy
parents:
385
diff
changeset
|
54 fcb C$SHRARR duplicate last line character |
0 | 55 fcb C$PAUS pause character |
56 fcb C$INTR interrupt character | |
57 fcb C$QUIT quit character | |
58 fcb C$BSP backspace echo character | |
59 fcb C$BELL line overflow character (bell) | |
1953 | 60 IFGT Level-1 |
0 | 61 fcb $01 init value for dev ctl reg |
1953 | 62 ELSE |
63 fcb ModCoVDG init value for dev ctl reg | |
64 ENDC | |
0 | 65 fcb $00 baud rate |
66 fdb name copy of descriptor name address | |
67 fcb $00 acia xon char | |
68 fcb $00 acia xoff char | |
69 fcb szx (szx) number of columns for display | |
70 fcb szy (szy) number of rows for display | |
1953 | 71 IFGT Level-1 |
0 | 72 fcb wnum window number |
73 fcb $01 data in rest of descriptor valid | |
74 fcb sty (sty) window type | |
75 fcb cpx (cpx) x cursor position | |
76 fcb cpy (cpy) y cursor position | |
77 fcb prn1 (prn1) foreground color | |
78 fcb prn2 (prn2) background color | |
79 fcb prn3 (prn3) border color | |
1953 | 80 ENDC |
0 | 81 initsize equ * |
82 | |
83 name fcs /Term/ | |
84 mgrnam fcs /SCF/ | |
1933 | 85 drvnam fcs /VTIO/ |
0 | 86 |
87 emod | |
88 eom equ * | |
89 end | |
90 |