aboutsummaryrefslogtreecommitdiff
path: root/tests
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 /tests
parent9295e8f445dae6431f8e7c543eb8c374742b136d (diff)
downloadqbt-52d8eda04d1e2e33bf4c09713d83360453cec435.tar.gz
qbt-52d8eda04d1e2e33bf4c09713d83360453cec435.zip
add blit to instructions
Diffstat (limited to 'tests')
-rw-r--r--tests/blit.qbt9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/blit.qbt b/tests/blit.qbt
new file mode 100644
index 0000000..b8fa0d3
--- /dev/null
+++ b/tests/blit.qbt
@@ -0,0 +1,9 @@
+main()
+{
+ /* alloc */
+ i27 a = ^ 16;
+ i27 b = ^ 16;
+ /* blit */
+ b <<* 16 a;
+ => ();
+}