1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-11-25 07:32:16 +00:00
SixtyPical/eg/rudiments
2019-05-14 15:01:10 +01:00
..
errorful
support
add.60p
buffer.60p
call.60p
cmp-byte.60p
cmp-litword.60p
cmp-word.60p
conditional2.60p
conditional.60p
example.60p
forever.60p
goto.60p
loop.60p
memloc.60p
nested-for.60p Forbid nested with interrupts blocks, and more refactoring. 2019-05-14 15:01:10 +01:00
print.60p
README.md
vector-table.60p
vector.60p
word-table.60p

This directory contains example sources which demonstrate the rudiments of SixtyPical.

Examples that are meant to fail and produce an error message are in the errorful/ subdirectory.

These files are intended to be architecture-agnostic. For the ones that do produce output, an appropriate source under support/ should be included first, so that system entry points such as chrout are defined. In addition, some of these programs use "standard" support modules, so those should be included first too. For example:

sixtypical --run-on=x64 support/c64.60p support/stdlib.60p vector-table.60p

chrout is a routine with outputs the value of the accumulator as an ASCII character, disturbing none of the other registers, simply for the purposes of producing some observable output.

(There is a KERNAL routine which does this on both the Commodore 64 and the Commodore VIC-20. It should not be hard to find or write such a routine for most other architectures.)