mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-08 15:38:19 +01:00
A64: Implement AESD
This commit is contained in:
parent
ccef85dbb7
commit
40614202e7
8 changed files with 92 additions and 10 deletions
|
|
@ -723,8 +723,12 @@ U32 IREmitter::CRC32ISO64(const U32& a, const U64& b) {
|
|||
return Inst<U32>(Opcode::CRC32ISO64, a, b);
|
||||
}
|
||||
|
||||
U128 IREmitter::AESEncrypt(const U128& a) {
|
||||
return Inst<U128>(Opcode::AESEncrypt, a);
|
||||
U128 IREmitter::AESDecryptSingleRound(const U128& a) {
|
||||
return Inst<U128>(Opcode::AESDecryptSingleRound, a);
|
||||
}
|
||||
|
||||
U128 IREmitter::AESEncryptSingleRound(const U128& a) {
|
||||
return Inst<U128>(Opcode::AESEncryptSingleRound, a);
|
||||
}
|
||||
|
||||
U128 IREmitter::AESInverseMixColumns(const U128& a) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue