diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-04-09 20:41:43 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-04-09 20:41:43 +0300 |
| commit | 52d8eda04d1e2e33bf4c09713d83360453cec435 (patch) | |
| tree | 9f1822814233ab604204ee6d482be6d5a4798ddc /tests/blit.qbt | |
| parent | 9295e8f445dae6431f8e7c543eb8c374742b136d (diff) | |
| download | qbt-52d8eda04d1e2e33bf4c09713d83360453cec435.tar.gz qbt-52d8eda04d1e2e33bf4c09713d83360453cec435.zip | |
add blit to instructions
Diffstat (limited to 'tests/blit.qbt')
| -rw-r--r-- | tests/blit.qbt | 9 |
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; + => (); +} |
