mirror of
https://github.com/KarolS/millfork.git
synced 2026-04-21 09:16:34 +00:00
CoCo: add coco_crt target
This commit is contained in:
@@ -2,6 +2,8 @@
|
||||
|
||||
### A note about Color Computer
|
||||
|
||||
#### `coco_rsdos` target
|
||||
|
||||
The `coco_rsdos` target creates binary files that can run on Tandy Color Computer running RS-DOS.
|
||||
|
||||
The compiler output is a raw machine code file with the `.bin` extension, which then has to be put on a disk.
|
||||
@@ -13,3 +15,12 @@ You can do it using `imgtool` from the [MAME project](https://www.mamedev.org/):
|
||||
The resulting file can then be loaded and ran using the following commands:
|
||||
|
||||
LOADM"CO":EXEC
|
||||
|
||||
#### `coco_crt` target
|
||||
|
||||
The `coco_crt` target creates 16k cartridge images that can run on Tandy Color Computer or Dragon.
|
||||
|
||||
The program is run directly from ROM;
|
||||
typical ROM programming guidelines apply, see [the ROM vs RAM guide](./rom-vs-ram.md).
|
||||
|
||||
The `main` function is not allowed to return.
|
||||
|
||||
@@ -102,6 +102,9 @@ The compiler emits COM files.
|
||||
* `coco_rsdos` – Tandy Color Computer running RS-DOS. (very experimental)
|
||||
Read [the Color Computer programming guide](./coco-programming-guide.md) for more info.
|
||||
|
||||
* `coco_crt` – 16K cartridge for Tandy Color Computer. (very experimental)
|
||||
Read [the Color Computer programming guide](./coco-programming-guide.md) for more info.
|
||||
|
||||
* `dos_com` – a COM file for DOS on IBM PC. (very experimental)
|
||||
|
||||
* `x16_experimental` – Commander X16; very experimental,
|
||||
|
||||
Reference in New Issue
Block a user