201
edits
Neuromancer (talk | contribs) |
Neuromancer (talk | contribs) |
||
Line 18: | Line 18: | ||
Castle Master was [[Castle_Master/Releases| released in a number of platforms]] over the years. Depending on release you have, you need to extract and/or copy different files. | Castle Master was [[Castle_Master/Releases| released in a number of platforms]] over the years. Depending on release you have, you need to extract and/or copy different files. | ||
===ZX Spectrum releases=== | |||
If the ZX Spectrum release is from a tape, it [https://timwolverson.wordpress.com/2016/05/10/how-to-convert-zx-spectrum-programs-from-cassette-tape-to-tzx-files/ should be saved first from the original cassette into a tzx file]. Make sure you save the complete disk, not just a single program from it. Once the tape is saved, [https://github.com/shred/tzxtools install tzxtools] you will need to extract three files: | |||
* The title screen image, which should be renamed as "castlemaster.zx.title" and has exactly 6912 bytes. | |||
* The game data, which should be renamed as "castlemaster.zx.data" and is around 36 kbytes. | |||
* The border image, which should be renamed as "castlemaster.zx.border" and has exactly 6912 bytes. | |||
For instance, for the original Incentive release (1990), you can inspect their files using the <code>tzxls</code> command: | |||
<code> $ tzxls castlemaster.tzx | |||
... | |||
5 Turbo Speed Data Block 6912 bytes of bogus header | |||
6 Turbo Speed Data Block 36096 bytes of bogus header | |||
7 Turbo Speed Data Block 6912 bytes of bogus header | |||
</code> | |||
In order to extract these files, use the <code>tzxcat</code> command: | |||
<code> | |||
tzxcat castlemaster.tzx -b 5 > castlemaster.zx.title | |||
tzxcat castlemaster.tzx -b 6 > castlemaster.zx.data | |||
tzxcat castlemaster.tzx -b 7 > castlemaster.zx.border | |||
</code> | |||
===DOS releases=== | ===DOS releases=== |
edits