summaryrefslogtreecommitdiffhomepage
path: root/asm/intel64/and.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-11-18 17:55:27 +0100
committerRoland Reichwein <mail@reichwein.it>2020-11-18 17:55:27 +0100
commit031bfef600e7021c8bd72e2e663f368e7386b131 (patch)
tree4e724c3b13278e5c6fb90a9380d19dc1d253b4b3 /asm/intel64/and.h
parent927eb99e75325164a541c2638e1e607294019381 (diff)
Added Asm ops
Diffstat (limited to 'asm/intel64/and.h')
-rw-r--r--asm/intel64/and.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/asm/intel64/and.h b/asm/intel64/and.h
new file mode 100644
index 0000000..f488730
--- /dev/null
+++ b/asm/intel64/and.h
@@ -0,0 +1,31 @@
+// AND
+
+#pragma once
+
+#include <asm/assembler.h>
+
+class Op_and: public Op
+{
+public:
+ Op_and(const Asm::Args& args);
+
+public:
+ std::vector<uint8_t> getCode() override
+ {
+ return machine_code;
+ }
+
+ size_t size() override
+ {
+ return machine_code.size();
+ }
+
+ bool optimize() override ///< returns true if changed
+ {
+ return false;
+ }
+
+protected:
+ std::vector<uint8_t> machine_code;
+};
+