all repos — xyw @ efac4a062ac8b1fc63da5e5e66115dcbe14f1883

A minimal virtual machine and assembler for terminals.

xyw.h

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

typedef unsigned char xyw_byte;
typedef unsigned short xyw_word;

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

#endif // XYW_H