diff options
author | bd <bdunahu@operationnull.com> | 2025-05-11 22:04:46 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-11 22:04:46 -0400 |
commit | 43588597069587f6846a7d64a1957435bec5429d (patch) | |
tree | ce89a55af60b01f6b4129d7539d07c08bfaa1b9a /inc | |
parent | e98aadede1f2151e50a8fdb3dc69d306590718eb (diff) |
Add ROTV instruction
Diffstat (limited to 'inc')
-rw-r--r-- | inc/ex.h | 1 | ||||
-rw-r--r-- | inc/instr.h | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -89,7 +89,6 @@ class EX : public Stage /** * Handles operations involving a vector result and a scalar. - * Currently, this is SRDL and SRDS * @param slot 1, and later, the result of the mnemonic operation. * @param slot 2 * @param the mnemonic diff --git a/inc/instr.h b/inc/instr.h index a083699..5a8ff4a 100644 --- a/inc/instr.h +++ b/inc/instr.h @@ -39,6 +39,7 @@ enum Mnemonic { CEV, SRDL, SRDS, + ROTV, LOAD, ADDI, SUBI, |