convert AES

This commit is contained in:
Arisotura
2023-11-04 17:46:52 +01:00
parent 8f1b0d4a05
commit 7837c169a1
5 changed files with 136 additions and 133 deletions

View File

@ -347,8 +347,8 @@ void DSi_NDMA::Run7()
Running = 0;
NDS::ResumeCPU(1, 1<<(Num+4));
DSi_AES::CheckInputDMA();
DSi_AES::CheckOutputDMA();
DSi::AES->CheckInputDMA();
DSi::AES->CheckOutputDMA();
}
return;
@ -372,6 +372,6 @@ void DSi_NDMA::Run7()
InProgress = false;
NDS::ResumeCPU(1, 1<<(Num+4));
DSi_AES::CheckInputDMA();
DSi_AES::CheckOutputDMA();
DSi::AES->CheckInputDMA();
DSi::AES->CheckOutputDMA();
}