RFT Kleincomputer 85 (KC85/2) christmas "demo"

A small demo program written in C that:

Any kind of rapidly updated graphics is impacted by the KC85/2's extremely limited graphics abilities:

The toolflow is like this:

  1. The waving text is pre-computed on a host using a C program that generates a sequence of images.

  2. These images are dissected into 8x8 tiles by a Python script.

    The images are reduced to storing offsets into the tile table, which means tiles can be re-used.

    As this index is 8 bit, this also means that only 255 distinct tiles may be used.

    Additionally, subsequent images are stored as deltas to the preceeding image, thus reducing the number of tiles that are re-written.

    This data are output as a C file with inline assembly

  3. This data are used by a C program that is subsequently compiled using SDCC (https://github.com/anchorz/sdcc-z1013-kc85)

  4. The program is downloaded to the KC85/2 via cassette interface :)


Main Page