diff options
author | Quentin Carbonneaux <quentin@c9x.me> | 2022-12-10 23:16:21 +0100 |
---|---|---|
committer | Quentin Carbonneaux <quentin@c9x.me> | 2022-12-14 23:18:26 +0100 |
commit | 26c1c30b7d96d2170195970a8cdb3b024ba7421a (patch) | |
tree | 79c45ec28d63619fbe2a88ec2195f8fe4a95a8a5 /ops.h | |
parent | 15e25a61b38b250c7543437a093a9efe076cce0a (diff) | |
download | roux-26c1c30b7d96d2170195970a8cdb3b024ba7421a.tar.gz |
new blit instruction
Diffstat (limited to 'ops.h')
-rw-r--r-- | ops.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ops.h b/ops.h index 3d65081..fbcc2a8 100644 --- a/ops.h +++ b/ops.h @@ -129,6 +129,8 @@ O(copy, T(w,l,s,d, x,x,x,x), 0) X(0, 0, 1) V(0) /* Miscellaneous and Architecture-Specific Operations */ O(nop, T(x,x,x,x, x,x,x,x), 0) X(0, 0, 1) V(0) O(addr, T(m,m,e,e, x,x,e,e), 0) X(0, 0, 1) V(0) +O(blit0, T(m,e,e,e, m,e,e,e), 0) X(0, 1, 0) V(0) +O(blit1, T(w,e,e,e, x,e,e,e), 0) X(0, 1, 0) V(0) O(swap, T(w,l,s,d, w,l,s,d), 0) X(1, 0, 0) V(0) O(sign, T(w,l,e,e, x,x,e,e), 0) X(0, 0, 0) V(0) O(salloc, T(e,l,e,e, e,x,e,e), 0) X(0, 0, 0) V(0) |