annotate level2/modules/init.asm @ 1631:ec6fb5543b22

Robert Gault's modifications for correcting timing errors
author boisy
date Mon, 12 Jul 2004 01:38:08 +0000
parents 214ae6efd73e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
1 ********************************************************************
1424
32f1dae476b7 Fixed references in source from OS-9 to NitrOS-9 where appropriate
boisy
parents: 1414
diff changeset
2 * Init - NitrOS-9 Level 2 Configuration module
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
3 *
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
4 * $Id$
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
5 *
1348
8e804211cb25 Fixed sources to have new style change logs at top
boisy
parents: 1315
diff changeset
6 * Edt/Rev YYYY/MM/DD Modified by
8e804211cb25 Fixed sources to have new style change logs at top
boisy
parents: 1315
diff changeset
7 * Comment
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
8 * ------------------------------------------------------------------
1348
8e804211cb25 Fixed sources to have new style change logs at top
boisy
parents: 1315
diff changeset
9 * 204 1998/10/12 Boisy G. Pitre
8e804211cb25 Fixed sources to have new style change logs at top
boisy
parents: 1315
diff changeset
10 * Original OS-9 L2 Tandy distribution.
8e804211cb25 Fixed sources to have new style change logs at top
boisy
parents: 1315
diff changeset
11 *
8e804211cb25 Fixed sources to have new style change logs at top
boisy
parents: 1315
diff changeset
12 * 205 1998/10/20 Boisy G. Pitre
8e804211cb25 Fixed sources to have new style change logs at top
boisy
parents: 1315
diff changeset
13 * Added CC3IO and Clock sections.
8e804211cb25 Fixed sources to have new style change logs at top
boisy
parents: 1315
diff changeset
14 *
8e804211cb25 Fixed sources to have new style change logs at top
boisy
parents: 1315
diff changeset
15 * 205r2 1998/10/20 Boisy G. Pitre
8e804211cb25 Fixed sources to have new style change logs at top
boisy
parents: 1315
diff changeset
16 * Removed clock information from here.
8e804211cb25 Fixed sources to have new style change logs at top
boisy
parents: 1315
diff changeset
17 *
8e804211cb25 Fixed sources to have new style change logs at top
boisy
parents: 1315
diff changeset
18 * 1 2003/01/08 Boisy G. Pitre
8e804211cb25 Fixed sources to have new style change logs at top
boisy
parents: 1315
diff changeset
19 * Restarted edition number back to 1, removed CMDS/cc3go reference and
8e804211cb25 Fixed sources to have new style change logs at top
boisy
parents: 1315
diff changeset
20 * just have cc3go so that in certain cases, cc3go can be in the bootfile,
8e804211cb25 Fixed sources to have new style change logs at top
boisy
parents: 1315
diff changeset
21 * and so that ROMmed systems don't have to have a special init module.
1431
214ae6efd73e Fixed case difference
boisy
parents: 1424
diff changeset
22 * 2003/11/05 Robert Gault
1414
dc094065bd14 Fixed fdb where it should have been fcb
boisy
parents: 1363
diff changeset
23 * Corrected CC3IO info regards mouse. Changed from fcb to fdb low res/ right
dc094065bd14 Fixed fdb where it should have been fcb
boisy
parents: 1363
diff changeset
24 * Corrected OS9Defs to match.
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
25
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
26 nam Init
1424
32f1dae476b7 Fixed references in source from OS-9 to NitrOS-9 where appropriate
boisy
parents: 1414
diff changeset
27 ttl NitrOS-9 Level 2 Configuration module
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
28
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
29 ifp1
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
30 use defsfile
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
31 endc
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
32
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
33 tylg set Systm+$00
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
34 atrv set ReEnt+rev
1289
d13864ef3317 Changed to rev 0
boisy
parents: 760
diff changeset
35 rev set $00
760
961e0624375b Forgot to restart edition
boisy
parents: 751
diff changeset
36 edition set 1
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
37
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
38 mod eom,name,tylg,atrv,$0FE0,$0015
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
39
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
40 ***** USER MODIFIABLE DEFINITIONS HERE *****
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
41
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
42 * Init table
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
43 start equ *
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
44 fcb $27 number of IRQ polling entires
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
45 fdb DefProg offset to program to fork
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
46 fdb DefDev offset to default disk device
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
47 fdb DefCons offset to default console device
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
48 fdb DefBoot offset to boot module name
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
49 fcb $01 write protect flag (?)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
50 fcb Level OS level
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1348
diff changeset
51 fcb NOS9Vrsn OS version
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1348
diff changeset
52 fcb NOS9Major OS major revision
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1348
diff changeset
53 fcb NOS9Minor OS minor revision
343
b32293fc84f2 init.asm: added extra space
boisy
parents: 0
diff changeset
54 fcb $00 feature byte #1
b32293fc84f2 init.asm: added extra space
boisy
parents: 0
diff changeset
55 fcb $00 feature byte #2
b32293fc84f2 init.asm: added extra space
boisy
parents: 0
diff changeset
56 fcb 0,0,0,0,0,0,0,0 reserved
b32293fc84f2 init.asm: added extra space
boisy
parents: 0
diff changeset
57
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
58 * CC3IO section
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
59 fcb Monitor monitor type
1414
dc094065bd14 Fixed fdb where it should have been fcb
boisy
parents: 1363
diff changeset
60 fcb 0,1 mouse info, low res right mouse
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
61 fcb $1E key repeat start constant
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
62 fcb $03 key repeat delay constant
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
63
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
64 name fcs "Init"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
65 fcb edition
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
66
1315
23c681a015e1 cc3go has been renamed to SysGo
boisy
parents: 1289
diff changeset
67 DefProg fcs "SysGo"
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
68 DefDev fcs "/DD"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
69 DefCons fcs "/Term"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
70 DefBoot fcs "Boot"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
71
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
72 emod
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
73 eom equ *
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
74 end