annotate ReadMe @ 1652:558cab468052

RG fixed a bug in the Vavasour emulator clock2 module. clock2 is now of type Sbrtn instead of Systm. clock.asm has been modified to link to this type.
author boisy
date Sat, 17 Jul 2004 12:20:31 +0000
parents 98bbecab8089
children 862c164cff21
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1367
a198bd160e47 updated
boisy
parents: 1105
diff changeset
1 THE NITROS-9 PROJECT
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
2
1381
98bbecab8089 Slight fix
boisy
parents: 1367
diff changeset
3 This project was started some years ago by Boisy Pitre and Alan DeKok.
1367
a198bd160e47 updated
boisy
parents: 1105
diff changeset
4 The idea was to create a well documented repository of NitrOS-9 source
a198bd160e47 updated
boisy
parents: 1105
diff changeset
5 code for the Color Computer.
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
6
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
7 That goal has largely been reached, though there are still modules that have
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
8 yet to be disassembled and properly commented. Also, other source files
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
9 need additional commenting.
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
10
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
11 FILE ORGANIZATION
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
12 All source files contain the file extension '.asm' The source files are
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
13 organized into their respective directories, with the topmost being:
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
14
1367
a198bd160e47 updated
boisy
parents: 1105
diff changeset
15 docs/ ..... NitrOS-9 Documentation
a198bd160e47 updated
boisy
parents: 1105
diff changeset
16 6809l1/ ..... NitrOS-9/6809 Level 1 source
a198bd160e47 updated
boisy
parents: 1105
diff changeset
17 6809l2/ ..... NitrOS-9/6809 Level 2 source
a198bd160e47 updated
boisy
parents: 1105
diff changeset
18 6309l2/ ..... NitrOS-9/6309 Level 2 source
a198bd160e47 updated
boisy
parents: 1105
diff changeset
19 6309l3/ ..... NitrOS-9/6309 Level 3 source
a198bd160e47 updated
boisy
parents: 1105
diff changeset
20 defs/ ..... NitrOS-9 definition files
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
21 3rdparty/ ..... Third party drivers, applications, etc.
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
22
1367
a198bd160e47 updated
boisy
parents: 1105
diff changeset
23 The 6x09l?/ directories contain makefiles and subdirectories for commands,
a198bd160e47 updated
boisy
parents: 1105
diff changeset
24 modules and bootfiles.
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
25
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
26 DEFINITION FILES
1367
a198bd160e47 updated
boisy
parents: 1105
diff changeset
27 The defs/ directory has definition files for the NitrOS-9 packages. These
a198bd160e47 updated
boisy
parents: 1105
diff changeset
28 these defs/ files are also the basis for the definition files that are
a198bd160e47 updated
boisy
parents: 1105
diff changeset
29 migrated to the distribution disks.
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
30
1367
a198bd160e47 updated
boisy
parents: 1105
diff changeset
31 os9defs ..... Defs files for all NitrOS-9 distributions
a198bd160e47 updated
boisy
parents: 1105
diff changeset
32 systype ..... System definitions for all NitrOS-9 distributions
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
33 scfdefs ..... SCF file manager defs
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
34 rbfdefs ..... RBF file manager defs
105
1e235d56f59a Updated
boisy
parents: 57
diff changeset
35 vdgdefs ..... VDGInt driver defs
1047
1ba9c76ad73f Updated
boisy
parents: 105
diff changeset
36 pipedefs ..... PipeMan defs
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
37
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
38 BUILDING
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
39 The provided makefiles use the os9tools package, which can be found at
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
40 www.sourceforge.net, in order to assemble source files into binary modules.
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
41 Simply type 'make' at the project's root directory to assemble.
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
42