comparison tools/lib64gfx.h @ 1726:f9128665a47e

Implement operator types DO_SET_MEM_HI and DO_SET_MEM_LO. Not used yet.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 07 Jun 2018 14:48:26 +0300
parents de8e0a404c06
children 07111a60cd4e
comparison
equal deleted inserted replaced
1725:40a5ba0b3838 1726:f9128665a47e
84 { 84 {
85 DO_COPY, // Perform copy between memory (from/to offset) and subject 85 DO_COPY, // Perform copy between memory (from/to offset) and subject
86 DO_SET_MEM, // Set subject value or fill subject memory area to byte value from offset 86 DO_SET_MEM, // Set subject value or fill subject memory area to byte value from offset
87 DO_SET_OP, // Like above but value from op->offs field instead 87 DO_SET_OP, // Like above but value from op->offs field instead
88 88
89 DO_SET_MEM_HI, // Copy one byte value like DO_SET_MEM, but high nibble only
90 DO_SET_MEM_LO, // Like above, but low nibble
91
89 DO_DEC_FUNC, // Execute specified decoding function (only for decoding operations) 92 DO_DEC_FUNC, // Execute specified decoding function (only for decoding operations)
90 DO_ENC_FUNC, // Same, but for encoding 93 DO_ENC_FUNC, // Same, but for encoding
91 94
92 DO_CHAR_CFG, // Set character mode configuration 95 DO_CHAR_CFG, // Set character mode configuration
93 96