diff options
author | Mai <[email protected]> | 2023-05-09 17:33:04 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2023-05-09 17:33:04 -0400 |
commit | 4ab79a8c023aa63caaa93848b09b9fe8b183b1a9 (patch) | |
tree | 2f7269d62d5cc3c8bb0b82de587e3fb43ce3a1fb /src/instructions/arithmetic.cpp | |
parent | ab75463999f4f3291976b079d42d52ee91eebf3f (diff) | |
parent | 18c37509fa44b8c6e4543b5d429fbae5d8fe4e5d (diff) | |
download | sirit-master.tar.gz sirit-master.zip |
Implement required ops for Citra
Diffstat (limited to 'src/instructions/arithmetic.cpp')
-rw-r--r-- | src/instructions/arithmetic.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/instructions/arithmetic.cpp b/src/instructions/arithmetic.cpp index 4fa8057..ab62177 100644 --- a/src/instructions/arithmetic.cpp +++ b/src/instructions/arithmetic.cpp @@ -40,5 +40,7 @@ DEFINE_BINARY(OpFMod, spv::Op::OpFMod) DEFINE_BINARY(OpSRem, spv::Op::OpSRem) DEFINE_BINARY(OpFRem, spv::Op::OpFRem) DEFINE_BINARY(OpIAddCarry, spv::Op::OpIAddCarry) +DEFINE_BINARY(OpVectorTimesScalar, spv::Op::OpVectorTimesScalar) +DEFINE_BINARY(OpDot, spv::Op::OpDot) } // namespace Sirit |