Mercurial > hg > Members > kono > nitros9-code
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 |
rev | line source |
---|---|
0 | 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 | 3 * |
4 * $Id$ | |
5 * | |
1348 | 6 * Edt/Rev YYYY/MM/DD Modified by |
7 * Comment | |
0 | 8 * ------------------------------------------------------------------ |
1348 | 9 * 204 1998/10/12 Boisy G. Pitre |
10 * Original OS-9 L2 Tandy distribution. | |
11 * | |
12 * 205 1998/10/20 Boisy G. Pitre | |
13 * Added CC3IO and Clock sections. | |
14 * | |
15 * 205r2 1998/10/20 Boisy G. Pitre | |
16 * Removed clock information from here. | |
17 * | |
18 * 1 2003/01/08 Boisy G. Pitre | |
19 * Restarted edition number back to 1, removed CMDS/cc3go reference and | |
20 * just have cc3go so that in certain cases, cc3go can be in the bootfile, | |
21 * and so that ROMmed systems don't have to have a special init module. | |
1431 | 22 * 2003/11/05 Robert Gault |
1414 | 23 * Corrected CC3IO info regards mouse. Changed from fcb to fdb low res/ right |
24 * Corrected OS9Defs to match. | |
0 | 25 |
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 | 28 |
29 ifp1 | |
30 use defsfile | |
31 endc | |
32 | |
33 tylg set Systm+$00 | |
34 atrv set ReEnt+rev | |
1289 | 35 rev set $00 |
760 | 36 edition set 1 |
0 | 37 |
38 mod eom,name,tylg,atrv,$0FE0,$0015 | |
39 | |
40 ***** USER MODIFIABLE DEFINITIONS HERE ***** | |
41 | |
42 * Init table | |
43 start equ * | |
44 fcb $27 number of IRQ polling entires | |
45 fdb DefProg offset to program to fork | |
46 fdb DefDev offset to default disk device | |
47 fdb DefCons offset to default console device | |
48 fdb DefBoot offset to boot module name | |
49 fcb $01 write protect flag (?) | |
50 fcb Level OS level | |
1363 | 51 fcb NOS9Vrsn OS version |
52 fcb NOS9Major OS major revision | |
53 fcb NOS9Minor OS minor revision | |
343 | 54 fcb $00 feature byte #1 |
55 fcb $00 feature byte #2 | |
56 fcb 0,0,0,0,0,0,0,0 reserved | |
57 | |
0 | 58 * CC3IO section |
59 fcb Monitor monitor type | |
1414 | 60 fcb 0,1 mouse info, low res right mouse |
0 | 61 fcb $1E key repeat start constant |
62 fcb $03 key repeat delay constant | |
63 | |
64 name fcs "Init" | |
65 fcb edition | |
66 | |
1315 | 67 DefProg fcs "SysGo" |
0 | 68 DefDev fcs "/DD" |
69 DefCons fcs "/Term" | |
70 DefBoot fcs "Boot" | |
71 | |
72 emod | |
73 eom equ * | |
74 end |