diff options
author | bd <bdunahu@operationnull.com> | 2025-05-11 12:20:33 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-11 12:21:34 -0400 |
commit | 26c24ab3c581967015490d1a11ee098bb5ba338a (patch) | |
tree | 94c8f59ae7d530127d8cd49ce1e6480da7397d6f /inc | |
parent | 6f4e9e0b914c3e68691a5d884cbad0b5813fcf18 (diff) |
Replaced STOREV with LOADV
Diffstat (limited to 'inc')
-rw-r--r-- | inc/ex.h | 2 | ||||
-rw-r--r-- | inc/instr.h | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -90,7 +90,7 @@ class EX : public Stage /** * Handles operations involving a single vector register. - * Currently, this is LOADV and STOREV + * 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 0c49a79..7a6396d 100644 --- a/inc/instr.h +++ b/inc/instr.h @@ -37,8 +37,9 @@ enum Mnemonic { DIVV, CMP, CEV, + SRDL, + SRDS, LOAD, - LOADV, ADDI, SUBI, SFTRI, @@ -47,7 +48,6 @@ enum Mnemonic { ORI, XORI, STORE, - STOREV, JMP, JRL, JAL, |