diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-05-13 22:34:31 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-05-13 22:57:14 -0700 |
commit | 56a0f3c560b9763c1aafdf7898d134b57277ff5e (patch) | |
tree | 3156b6bf3e48737f9a79e81112e7a24268c93d5d /subx/031check_operands.cc | |
parent | c12e85e1038f1118da0e22a810801b402a67a444 (diff) | |
parent | 3cf8a4548fd31d4e6f221bbcc643b365264a649c (diff) | |
download | mu-56a0f3c560b9763c1aafdf7898d134b57277ff5e.tar.gz |
Merge branch 'dquotes' into dquotes-1
dquotes.subx is now segfaulting after this merge. Seems to be trying to use addresses from the old stack.
Diffstat (limited to 'subx/031check_operands.cc')
-rw-r--r-- | subx/031check_operands.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/subx/031check_operands.cc b/subx/031check_operands.cc index 9590979f..aad84da6 100644 --- a/subx/031check_operands.cc +++ b/subx/031check_operands.cc @@ -152,8 +152,12 @@ void init_permitted_operands() { // jump put(Permitted_operands, "eb", 0x04); + put(Permitted_operands, "72", 0x04); + put(Permitted_operands, "73", 0x04); put(Permitted_operands, "74", 0x04); put(Permitted_operands, "75", 0x04); + put(Permitted_operands, "76", 0x04); + put(Permitted_operands, "77", 0x04); put(Permitted_operands, "7c", 0x04); put(Permitted_operands, "7d", 0x04); put(Permitted_operands, "7e", 0x04); |