Skip to content

Commit fb8e5e3

Browse files
authored
disassemblers/jvm: Fixed mask and mnemonic of areturn and athrow
1 parent 375145e commit fb8e5e3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

disassemblers/jvm.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
"format": "#{I}"
5050
},
5151
{
52-
"mask": "areturn",
53-
"mnemonic": "1011'0000",
52+
"mask": "1011'0000",
53+
"mnemonic": "areturn",
5454
"format": ""
5555
},
5656
{
@@ -84,8 +84,8 @@
8484
"format": ""
8585
},
8686
{
87-
"mask": "athrow",
88-
"mnemonic": "1011'1111",
87+
"mask": "1011'1111",
88+
"mnemonic": "athrow",
8989
"format": ""
9090
},
9191
{
@@ -1042,4 +1042,4 @@
10421042
"format": ""
10431043
}
10441044
]
1045-
}
1045+
}

0 commit comments

Comments
 (0)