Last active
August 29, 2015 13:57
-
-
Save motonacciu/9843665 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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