aboutsummaryrefslogtreecommitdiff
path: root/src/inst.h
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2023-10-15 17:38:35 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2023-10-15 17:38:35 +0100
commit40dfa5c25584a38566380229b016e8d5e495507e (patch)
treea94d3a2cc15549e37071e09e136e08fec4a3dac2 /src/inst.h
parentea14b3beb626102a2e0de80240f89413c0b6b72a (diff)
downloadovm-40dfa5c25584a38566380229b016e8d5e495507e.tar.gz
ovm-40dfa5c25584a38566380229b016e8d5e495507e.tar.bz2
ovm-40dfa5c25584a38566380229b016e8d5e495507e.zip
Split off instruction structure to its own file
Diffstat (limited to 'src/inst.h')
-rw-r--r--src/inst.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/inst.h b/src/inst.h
new file mode 100644
index 0000000..95baaf2
--- /dev/null
+++ b/src/inst.h
@@ -0,0 +1,40 @@
+/* Copyright (C) 2023 Aryadev Chavali
+
+ * You may distribute and modify this code under the terms of the
+ * GPLv2 license. You should have received a copy of the GPLv2
+ * license with this file. If not, please write to:
+ * aryadev@aryadevchavali.com.
+
+ * Created: 2023-10-15
+ * Author: Aryadev Chavali
+ * Description: Instructions and opcodes
+ */
+
+#ifndef INST_H
+#define INST_H
+
+#include "./base.h"
+
+typedef enum
+{
+ OP_PUSH_BYTE = 1,
+ OP_PUSH_WORD,
+ OP_PUSH_FLOAT,
+} op_t;
+
+typedef struct
+{
+ op_t opcode;
+ data_t operand;
+} inst_t;
+
+#define INST_BPUSH(BYTE) \
+ ((inst_t){.opcode = OP_PUSH_BYTE, .operand = DBYTE(BYTE)})
+
+#define INST_WPUSH(WORD) \
+ ((inst_t){.opcode = OP_PUSH_WORD, .operand = DWORD(WORD)})
+
+#define INST_FPUSH(FLOAT) \
+ ((inst_t){.opcode = OP_PUSH_FLOAT, .operand = DFLOAT(FLOAT)})
+
+#endif