Difference between revisions of "Graduate Software"

From CPCWiki - THE Amstrad CPC encyclopedia!
Jump to: navigation, search
(Notes)
(Structure of a utility ROM)
Line 14: Line 14:
 
| ''Count''
 
| ''Count''
 
| ''Description''
 
| ''Description''
 +
|-
 +
| 0
 +
| 48
 +
| Description of ROM (note 1)
 
|-
 
|-
 
| &100
 
| &100
 
| 256
 
| 256
| Directory (note 1)
+
| Directory (note 2)
 
|-
 
|-
 
| &200
 
| &200
Line 33: Line 37:
 
| 0
 
| 0
 
| 8
 
| 8
| Filename (note 2)
+
| Filename (note 3)
 
|-
 
|-
 
| 8
 
| 8

Revision as of 11:41, 28 April 2018

Graduate software provided a version of CP/M+ on ROM.

Additional 'utility' roms contained CP/M programs installed on a ROM.

Structure of a utility ROM

Each ROM is 16KB and has the following structure:

Offset (Hex) Count Description
0 48 Description of ROM (note 1)
&100 256 Directory (note 2)
&200 &3e00 Data area for files.

Each directory entry has the following structure:

Offset (Hex) Count Description
0 8 Filename (note 3)
8 1  ? (unknown &20)
9 2 address in ROM for start of data for file (note 3)
11 2 length in bytes of file
14 2 (unknown) &feff

Notes

1. Up to 16 files can be defined. Each file takes 1 entry. Unused entries are filled with &FF.

2. Filename is in upper case, 8 characters long, padded with spaces. '.COM' extension is assumed when accessed.

3. ROM starts at &c000. Therefore &c200 is the start of the first file.