summary refs log tree commit diff
path: root/src/instruction/nop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/instruction/nop.c')
-rw-r--r--src/instruction/nop.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/instruction/nop.c b/src/instruction/nop.c
new file mode 100644
index 0000000..8e05396
--- /dev/null
+++ b/src/instruction/nop.c
@@ -0,0 +1,7 @@
+#include "3cl.h"
+#include "instruction.h"
+
+struct CCLFrame *ccl_instruction_nop(struct CCL *ccl, struct CCLFrame *frame)
+{
+    return frame;
+}