Add missing in/out mnemonics to token pattern
This commit is contained in:
parent
10973de1d3
commit
dd696b4c4a
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ static RZ_OWN RzPVector /*<RzAsmTokenPattern *>*/ *get_token_patterns() {
|
|||
RzAsmTokenPattern *pat = RZ_NEW0(RzAsmTokenPattern);
|
||||
pat->type = RZ_ASM_TOKEN_MNEMONIC;
|
||||
pat->pattern = strdup(
|
||||
"^((while)|(inc)|(dec)|(trap)|(nop)|(invalid)|(loop))");
|
||||
"^(while|inc|dec|out|in|trap|nop|invalid|loop)");
|
||||
rz_pvector_push(pvec, pat);
|
||||
|
||||
// ptr pattern
|
||||
|
|
|
|||
Loading…
Reference in a new issue