From d86b60b91afa1ee35b7c879172be6a49f4693e44 Mon Sep 17 00:00:00 2001 From: Alvin Cheng <88267875+cheng-alvin@users.noreply.github.com> Date: Sat, 30 Dec 2023 15:27:08 +1100 Subject: [PATCH] Created declaration for `adc()` --- libjas/include/adc.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 libjas/include/adc.h diff --git a/libjas/include/adc.h b/libjas/include/adc.h new file mode 100644 index 00000000..a908c550 --- /dev/null +++ b/libjas/include/adc.h @@ -0,0 +1,14 @@ +#include "codegen.h" +#include "error.h" +#include "init.h" +#include "macro.h" +#include "modrm.h" +#include "null.h" +#include "operand.h" +#include "rex.h" +#include "write.h" +#include +#include +#include + +jasErrorCode_t adc(jasTaggedOperand_t op1, jasTaggedOperand_t op2, jasTaggedOperand_t op3, jasTaggedOperand_t op4, jasInstance_t *instance); \ No newline at end of file