0
|
1 ********************************************************************
|
|
2 * Init - OS-9 Level Two V3 Configuration module
|
|
3 *
|
|
4 * $Id$
|
|
5 *
|
|
6 * Ed. Comments Who YY/MM/DD
|
|
7 * ------------------------------------------------------------------
|
|
8 * 204 Original OS-9 L2 Tandy distribution
|
|
9 * 205 Added CC3IO and Clock sections BGP 98/10/12
|
|
10 * 205b Removed clock information from here BGP 98/10/20
|
|
11
|
|
12 nam Init
|
|
13 ttl OS-9 Level Two V3 Configuration module
|
|
14
|
|
15 ifp1
|
|
16 use defsfile
|
|
17 endc
|
|
18
|
|
19 tylg set Systm+$00
|
|
20 atrv set ReEnt+rev
|
|
21 rev set $02
|
|
22 edition set $CD
|
|
23
|
|
24 mod eom,name,tylg,atrv,$0FE0,$0015
|
|
25
|
|
26 ***** USER MODIFIABLE DEFINITIONS HERE *****
|
|
27
|
|
28 * Init table
|
|
29 start equ *
|
|
30 fcb $27 number of IRQ polling entires
|
|
31 fdb DefProg offset to program to fork
|
|
32 fdb DefDev offset to default disk device
|
|
33 fdb DefCons offset to default console device
|
|
34 fdb DefBoot offset to boot module name
|
|
35 fcb $01 write protect flag (?)
|
|
36 fcb Level OS level
|
|
37 fcb OS9Vrsn OS version
|
|
38 fcb OS9Major OS major revision
|
|
39 fcb OS9Minor OS minor revision
|
|
40 fcb $00 compatibility flag #1
|
|
41 * CC3IO section
|
|
42 fcb Monitor monitor type
|
|
43 fcb $1E key repeat start constant
|
|
44 fcb $03 key repeat delay constant
|
|
45
|
|
46 name fcs "Init"
|
|
47 fcb edition
|
|
48
|
|
49 DefProg fcs "CC3Go"
|
|
50 DefDev fcs "/DD"
|
|
51 DefCons fcs "/Term"
|
|
52 DefBoot fcs "Boot"
|
|
53
|
|
54 emod
|
|
55 eom equ *
|
|
56 end
|