diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-08-18 20:48:27 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-08-18 21:07:11 +0300 |
| commit | 4af5176d6377958a457da3e5f671ce21540fad70 (patch) | |
| tree | 04e7f2fe66e7c2e05f6a47b0c8108cf407ee6c93 /tests/blit | |
| parent | cdbe058f69f1db9c552e1b4a1ec5f94c12fc48a2 (diff) | |
| download | qbt-4af5176d6377958a457da3e5f671ce21540fad70.tar.gz qbt-4af5176d6377958a457da3e5f671ce21540fad70.zip | |
add tests and fixes on top of 674438
Diffstat (limited to 'tests/blit')
| -rw-r--r-- | tests/blit/blit.qbt | 9 | ||||
| -rw-r--r-- | tests/blit/source.mk | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/blit/blit.qbt b/tests/blit/blit.qbt new file mode 100644 index 0000000..b8fa0d3 --- /dev/null +++ b/tests/blit/blit.qbt @@ -0,0 +1,9 @@ +main() +{ + /* alloc */ + i27 a = ^ 16; + i27 b = ^ 16; + /* blit */ + b <<* 16 a; + => (); +} diff --git a/tests/blit/source.mk b/tests/blit/source.mk new file mode 100644 index 0000000..6bc4045 --- /dev/null +++ b/tests/blit/source.mk @@ -0,0 +1 @@ +SIMPLE_XFAIL += blit,'unimplemented insn: BLIT' |
