aboutsummaryrefslogtreecommitdiff
path: root/tests/blit.qbt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/blit.qbt')
-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;
+ => ();
+}