summaryrefslogtreecommitdiffhomepage
path: root/asm/intel64/nop.h
diff options
context:
space:
mode:
Diffstat (limited to 'asm/intel64/nop.h')
-rw-r--r--asm/intel64/nop.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/asm/intel64/nop.h b/asm/intel64/nop.h
new file mode 100644
index 0000000..72d6d1b
--- /dev/null
+++ b/asm/intel64/nop.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#include <asm/chunk.h>
+
+class Op_nop: public OpSimple
+{
+public:
+ Op_nop() : OpSimple({ 0x90 }) {}
+
+};
+