annotate level1/modules/term_scdwt.asm @ 2877:b14ea1930107 lwtools-port

makefiles: Remove some spurious spaces which created some merge conflicts.
author Tormod Volden <debian.tormod@gmail.com>
date Sun, 24 Nov 2013 15:57:15 +0100
parents c877f09599f9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2245
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
1 ********************************************************************
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
2 * TERM - Drivewire Virtual Serial Port on T0
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
3 *
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
4 * mostly copied or slightly changed from other OS9/DriveWire code
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
5 *
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
6 * Aaron Wolfe
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
7 * version 0.3 - 12/17/09 - added SHARE bit to mode
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
8 *
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
9 * This descriptor has slightly different defaults, intended to be used as
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
10 * the channel for the DriveWire utilities
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
11 *
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
12
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
13 nam TERM
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
14 ttl CoCo DriveWire Virtual Serial Device Descriptor
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
15
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
16 ifp1
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
17 use defsfile
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
18 endc
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
19
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
20 tylg set Devic+Objct
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
21 atrv set ReEnt+rev
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
22 rev set $00
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
23
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
24 mod eom,name,tylg,atrv,mgrnam,drvnam
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
25
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
26 fcb UPDAT.+SHARE. mode byte (share set to prevent multiple access)
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
27 fcb HW.Page extended controller address
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
28 fdb $FF00 physical controller address
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
29 fcb initsize-*-1 initilization table size
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
30 fcb DT.SCF device type:0=scf,1=rbf,2=pipe,3=scf
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
31 fcb $00 case:0=up&lower,1=upper only
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
32 fcb $00 backspace:0=bsp,1=bsp then sp & bsp
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
33 fcb $01 delete:0=bsp over line,1=return
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
34 fcb $00 echo:0=no echo
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
35 fcb $00 auto line feed:0=off
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
36 fcb $00 end of line null count
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
37 fcb $00 pause:0=no end of page pause
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
38 fcb 66 lines per page
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
39 fcb C$BSP backspace character
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
40 fcb C$DEL delete line character
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
41 fcb $00 end of record character
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
42 fcb $00 end of file character
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
43 fcb C$RPRT reprint line character
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
44 fcb C$RPET duplicate last line character
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
45 fcb C$PAUS pause character
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
46 fcb $00 interrupt character
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
47 fcb $00 quit character
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
48 fcb C$BSP backspace echo character
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
49 fcb C$BELL line overflow character (bell)
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
50 fcb $00 init value for dev ctl reg
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
51 fcb B600 baud rate
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
52 fdb name copy of descriptor name address
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
53 fcb $00 acia xon char
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
54 fcb $00 acia xoff char
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
55 fcb 80 (szx) number of columns for display
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
56 fcb 24 (szy) number of rows for display
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
57 initsize equ *
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
58
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
59 name fcs /Term/
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
60 mgrnam fcs /SCF/
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
61 drvnam fcs /scdwt/
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
62
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
63 emod
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
64 eom equ *
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
65 end
c877f09599f9 Made minimum bootfiles and added term_scdwt
boisy
parents:
diff changeset
66