all repos — xyw @ ee6b5ab02beb5d628b9111fd8aba5365d54841fc

A minimal virtual machine and assembler for terminals.

xyw.h

 1
 2
 3
 4
 5
 6
 7
 8
 9
#ifndef XYW_H
#define XYW_H

typedef unsigned char xyw_byte;
typedef unsigned short xyw_word;

int xyw_assemble(const char *input, const char *output);

#endif // XYW_H