aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-04-09 20:41:43 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-04-09 20:41:43 +0300
commit52d8eda04d1e2e33bf4c09713d83360453cec435 (patch)
tree9f1822814233ab604204ee6d482be6d5a4798ddc /include
parent9295e8f445dae6431f8e7c543eb8c374742b136d (diff)
downloadqbt-52d8eda04d1e2e33bf4c09713d83360453cec435.tar.gz
qbt-52d8eda04d1e2e33bf4c09713d83360453cec435.zip
add blit to instructions
Diffstat (limited to 'include')
-rw-r--r--include/qbt/nodes.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/qbt/nodes.h b/include/qbt/nodes.h
index b8c601b..98d36c6 100644
--- a/include/qbt/nodes.h
+++ b/include/qbt/nodes.h
@@ -19,6 +19,7 @@ enum insn_type {
ALLOC,
COPY,
MOVE,
+ BLIT,
EQ,
NE,
LE,
@@ -68,6 +69,7 @@ enum insn_flags {
M(ALLOC) \
M(COPY) \
M(MOVE) \
+ M(BLIT) \
M(EQ) \
M(NE) \
M(LE) \