1367
|
1 THE NITROS-9 PROJECT
|
0
|
2
|
1381
|
3 This project was started some years ago by Boisy Pitre and Alan DeKok.
|
1367
|
4 The idea was to create a well documented repository of NitrOS-9 source
|
|
5 code for the Color Computer.
|
0
|
6
|
|
7 That goal has largely been reached, though there are still modules that have
|
|
8 yet to be disassembled and properly commented. Also, other source files
|
|
9 need additional commenting.
|
|
10
|
|
11 FILE ORGANIZATION
|
|
12 All source files contain the file extension '.asm' The source files are
|
|
13 organized into their respective directories, with the topmost being:
|
|
14
|
1367
|
15 docs/ ..... NitrOS-9 Documentation
|
|
16 6809l1/ ..... NitrOS-9/6809 Level 1 source
|
|
17 6809l2/ ..... NitrOS-9/6809 Level 2 source
|
|
18 6309l2/ ..... NitrOS-9/6309 Level 2 source
|
|
19 6309l3/ ..... NitrOS-9/6309 Level 3 source
|
|
20 defs/ ..... NitrOS-9 definition files
|
0
|
21 3rdparty/ ..... Third party drivers, applications, etc.
|
|
22
|
1367
|
23 The 6x09l?/ directories contain makefiles and subdirectories for commands,
|
|
24 modules and bootfiles.
|
0
|
25
|
|
26 DEFINITION FILES
|
1367
|
27 The defs/ directory has definition files for the NitrOS-9 packages. These
|
|
28 these defs/ files are also the basis for the definition files that are
|
|
29 migrated to the distribution disks.
|
0
|
30
|
1367
|
31 os9defs ..... Defs files for all NitrOS-9 distributions
|
|
32 systype ..... System definitions for all NitrOS-9 distributions
|
0
|
33 scfdefs ..... SCF file manager defs
|
|
34 rbfdefs ..... RBF file manager defs
|
105
|
35 vdgdefs ..... VDGInt driver defs
|
1047
|
36 pipedefs ..... PipeMan defs
|
0
|
37
|
|
38 BUILDING
|
|
39 The provided makefiles use the os9tools package, which can be found at
|
|
40 www.sourceforge.net, in order to assemble source files into binary modules.
|
|
41 Simply type 'make' at the project's root directory to assemble.
|
|
42
|