vectrex
about the 6809 processor
- https://en.wikipedia.org/wiki/Motorola_6809
- http://techheap.packetizer.com/processors/6809/6809Instructions.html
- http://techheap.packetizer.com/processors/6809/6809.html
cmoc compiler for 6809
hello world
#include <vectrex/bios.h>
int main() {
while(1) {
waitretrace();
printstr_c( 0x10, -0x50, "HELLO WORLD!" );
} return 0;
}
compile:
cmoc --vectrex hello_world.c