Platform Luxor ABC800 - z88dk/z88dk GitHub Wiki

This port is still at an earlier stage. Only simple console I/O is supported.

Quick Start

zcc +abc800 -zorg=33972 program.c

Extra options

The ABC800 native console library is more generic than the ABC80 one and includes most of the ABC models, so it is possible to produce simple universal console programs by choosing the ABC800 target:

zcc +abc800 -create-app -subtype=hex -zorg=33972 program.c

..will produce an Intel HEX file valid on ABC80SIM emulator.

With the latest tools by H. Peter Anvin (https://www.zytor.com/pub/abc80/abcdisk/) it is possible to produce a .dsk image that can be used on both the ABC80SIM and ABCWin emulator.

For example you may add this into your Makefile:

%.bac: %.bin
      bin2abc --bac800 -s 33972 -o $@ $<

%.dsk: %.bac
      abcwrite mo $< $@