changed the byte code for push_intlit and push_negintlit.

added a new byte code push_charlit
This commit is contained in:
hyunghwan.chung
2016-09-14 04:56:00 +00:00
parent 0504fbde72
commit ab5dee8c77
5 changed files with 53 additions and 17 deletions

View File

@ -887,8 +887,10 @@ enum stix_bcode_t
BCODE_PUSH_ONE = 0x8A, /* 138 */
BCODE_PUSH_TWO = 0x8B, /* 139 */
BCODE_PUSH_INTLIT = 0xB1, /* 177 */
BCODE_PUSH_NEGINTLIT = 0xB2, /* 178 */
/* UNUSED - 0xB1 */
BCODE_PUSH_INTLIT = 0xB2, /* 178 */
BCODE_PUSH_NEGINTLIT = 0xB3, /* 179 */
BCODE_PUSH_CHARLIT = 0xB4, /* 180 */
/* UNUSED 0xE8 - 0xF7 */