comparison tools/lib64gfx.h @ 1922:3c6f638ce402

Remove the useless distinction of DO_ENC_FUNC and DO_DEC_FUNC, as the function pointers are separate anyway. Thus we now only have DO_FUNC.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 28 Jun 2018 01:24:07 +0300
parents 34ba8e2d2dd7
children 42cd527a01b9
comparison
equal deleted inserted replaced
1921:ee9bbf891352 1922:3c6f638ce402
90 DO_SET_OP, // Like above but value from op->offs field instead 90 DO_SET_OP, // Like above but value from op->offs field instead
91 91
92 DO_SET_MEM_HI, // Copy one byte value like DO_SET_MEM, but high nibble only 92 DO_SET_MEM_HI, // Copy one byte value like DO_SET_MEM, but high nibble only
93 DO_SET_MEM_LO, // Like above, but low nibble 93 DO_SET_MEM_LO, // Like above, but low nibble
94 94
95 DO_DEC_FUNC, // Execute specified decoding function (only for decoding operations) 95 DO_FUNC, // Execute specified decoding / encoding function
96 DO_ENC_FUNC, // Same, but for encoding
97 96
98 DO_CHAR_CFG, // Set character mode configuration 97 DO_CHAR_CFG, // Set character mode configuration
99 98
100 DO_LAST, // Last opcode, end processing 99 DO_LAST, // Last opcode, end processing
101 }; 100 };