annotate ReadMe @ 1295:cbe5b5313422

Removed poke to FFD9 for CoCo 3 since this is done by rel
author boisy
date Sun, 31 Aug 2003 15:13:14 +0000
parents b38ddf23cd43
children a198bd160e47
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
1 COCO OS-9 SOURCE PROJECT
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
2
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
3 This project was started some years ago by Boisy Pitre, and Alan DeKok.
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
4 The idea was to create a well documented repository of OS-9 Level One and
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
5 Level Two source code for the Color Computer.
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
105
1e235d56f59a Updated
boisy
parents: 57
diff changeset
15 docs/ ..... OS-9 Documentation
1047
1ba9c76ad73f Updated
boisy
parents: 105
diff changeset
16 level1/ ..... OS-9 Level One source
1ba9c76ad73f Updated
boisy
parents: 105
diff changeset
17 level2/ ..... OS-9 Level Two source
1ba9c76ad73f Updated
boisy
parents: 105
diff changeset
18 nlevel2/ ..... NitrOS-9 Level Two source
1ba9c76ad73f Updated
boisy
parents: 105
diff changeset
19 nlevel3/ ..... NitrOS-9 Level Three source
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
20 defs/ ..... OS-9 definition files
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
21 3rdparty/ ..... Third party drivers, applications, etc.
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
22
1047
1ba9c76ad73f Updated
boisy
parents: 105
diff changeset
23 The level1/, level2/, nlevel2/ and nlevel3/ directories contain makefiles and
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
24 subdirectories for commands, modules and bootfiles.
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
25
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
26 DEFINITION FILES
105
1e235d56f59a Updated
boisy
parents: 57
diff changeset
27 The defs/ directory has definition files for the OS-9 packages. Note that
1e235d56f59a Updated
boisy
parents: 57
diff changeset
28 these defs/ files are not intended for distribution disks, only for building
1e235d56f59a Updated
boisy
parents: 57
diff changeset
29 on the host.
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
30
57
a2e1e7563ed7 Changed README, removed binaries
boisy
parents: 0
diff changeset
31 os9defs ..... Defs files for all OS-9 packages
105
1e235d56f59a Updated
boisy
parents: 57
diff changeset
32 systype ..... System definitions for all OS-9 packages
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