Skip to content

Instantly share code, notes, and snippets.

@motonacciu
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save motonacciu/9843665 to your computer and use it in GitHub Desktop.

Select an option

Save motonacciu/9843665 to your computer and use it in GitHub Desktop.
// OPERATOR(NAME, ARITY, OPERAND_TYPES)
#ifndef OPTION
#define OPTION(...)
#endif
#ifndef OPERATOR
#define OPERATOR(...)
#endif
OPERATOR(add, 3, reg, reg, OPTION(reg, imm))
OPERATOR(sub, 3, reg, reg, OPTION(reg, imm))
OPERATOR(bra, 2, reg, lab)
// ...
#undef OPTION
#undef OPERATOR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment