diff options
author | Arisotura <thetotalworm@gmail.com> | 2023-11-04 17:46:52 +0100 |
---|---|---|
committer | Arisotura <thetotalworm@gmail.com> | 2023-11-04 17:46:52 +0100 |
commit | 7837c169a15db672451a3f80ac17e3e7291d95c5 (patch) | |
tree | b37c53b69dc31a017e6243a5fc0096e042917f41 /src/DSi_NDMA.cpp | |
parent | 8f1b0d4a052db068a029cd5784e52da7ecc9813e (diff) |
convert AES
Diffstat (limited to 'src/DSi_NDMA.cpp')
-rw-r--r-- | src/DSi_NDMA.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/DSi_NDMA.cpp b/src/DSi_NDMA.cpp index 6c349fa..f3c3745 100644 --- a/src/DSi_NDMA.cpp +++ b/src/DSi_NDMA.cpp @@ -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(); } |