Mercurial > hg > Members > kono > nitros9-code
annotate level1/modules/init.asm @ 1852:d2279ceca27f
Reverted previous change
author | cyouse |
---|---|
date | Sat, 02 Jul 2005 02:45:18 +0000 |
parents | beba50d7ac3e |
children | 46aa4db8204e |
rev | line source |
---|---|
0 | 1 ******************************************************************** |
1722 | 2 * Init - NitrOS-9 Configuration module |
0 | 3 * |
4 * $Id$ | |
5 * | |
1499 | 6 * Edt/Rev YYYY/MM/DD Modified by |
7 * Comment | |
0 | 8 * ------------------------------------------------------------------ |
1722 | 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. | |
1792 | 22 * |
1722 | 23 * 2003/11/05 Robert Gault |
24 * Corrected CC3IO info regards mouse. Changed from fcb to fdb low res/ right | |
25 * Corrected OS9Defs to match. | |
0 | 26 |
27 nam Init | |
1722 | 28 ttl NitrOS-9 Configuration module |
0 | 29 |
1722 | 30 ifp1 |
0 | 31 use defsfile |
1722 | 32 endc |
0 | 33 |
34 tylg set Systm+$00 | |
35 atrv set ReEnt+rev | |
1287 | 36 rev set $00 |
1722 | 37 edition set 1 |
0 | 38 |
1722 | 39 mod eom,name,tylg,atrv,$0FE0,$0015 |
40 | |
41 ***** USER MODIFIABLE DEFINITIONS HERE ***** | |
0 | 42 |
43 * Init table | |
44 start equ * | |
1722 | 45 fcb $27 number of IRQ polling entires |
306 | 46 fdb DefProg offset to program to fork |
47 fdb DefDev offset to default disk device | |
48 fdb DefCons offset to default console device | |
49 fdb DefBoot offset to boot module name | |
50 fcb $01 write protect flag (?) | |
51 fcb Level OS level | |
1805 | 52 fcb NOS9VER OS version |
53 fcb NOS9MAJ OS major revision | |
54 fcb NOS9MIN OS minor revision | |
1722 | 55 fcb CRCOff feature byte #1 |
317
e6dcf1ac92b2
Modified ccio.asm for better comments, init.asm simplified
boisy
parents:
308
diff
changeset
|
56 fcb $00 feature byte #2 |
1722 | 57 fcb 0,0,0,0,0,0,0,0 reserved |
58 | |
59 IFGT Level-1 | |
60 * CC3IO section | |
61 fcb Monitor monitor type | |
62 fcb 0,1 mouse info, low res right mouse | |
63 fcb $1E key repeat start constant | |
64 fcb $03 key repeat delay constant | |
65 ENDC | |
0 | 66 |
67 name fcs "Init" | |
1722 | 68 fcb edition |
0 | 69 |
70 DefProg fcs "SysGo" | |
201 | 71 DefDev fcs "/DD" |
0 | 72 DefCons fcs "/Term" |
73 DefBoot fcs "Boot" | |
74 | |
1722 | 75 emod |
0 | 76 eom equ * |
1722 | 77 end |