aboutsummaryrefslogtreecommitdiff
path: root/src/lopcodes.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/lopcodes.js')
-rw-r--r--src/lopcodes.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lopcodes.js b/src/lopcodes.js
index d83897c..3f7f63b 100644
--- a/src/lopcodes.js
+++ b/src/lopcodes.js
@@ -299,7 +299,7 @@ const CREATE_ABx = function(o, a, bc) {
return fullins(o << POS_OP | a << POS_A | bc << POS_Bx);
};
-const CREATE_Ax = function(o a) {
+const CREATE_Ax = function(o, a) {
return fullins(o << POS_OP | a << POS_Ax);
};