diff options
author | bunnei <bunneidev@gmail.com> | 2017-02-25 00:12:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-25 00:12:33 -0500 |
commit | 892888ed9e7c683150493c7c17f567d3c569e62e (patch) | |
tree | fffbfb393fc1da4b6c69a9c0593d2fe8ef9a10a7 /src/core/hw/hw.cpp | |
parent | fb5301cf6e7fd5d9ff2ea28b0ee610a7861146e6 (diff) | |
parent | 261250e3d9f78ead609e010a09d5efbb2694bf17 (diff) |
Merge pull request #2569 from wwylele/wrap-unwrap
APT: implemented Wrap and Unwrap
Diffstat (limited to 'src/core/hw/hw.cpp')
-rw-r--r-- | src/core/hw/hw.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hw/hw.cpp b/src/core/hw/hw.cpp index 9ff8825b2..8499f2ce6 100644 --- a/src/core/hw/hw.cpp +++ b/src/core/hw/hw.cpp @@ -4,6 +4,7 @@ #include "common/common_types.h" #include "common/logging/log.h" +#include "core/hw/aes/key.h" #include "core/hw/gpu.h" #include "core/hw/hw.h" #include "core/hw/lcd.h" @@ -85,6 +86,7 @@ void Update() {} /// Initialize hardware void Init() { + AES::InitKeys(); GPU::Init(); LCD::Init(); LOG_DEBUG(HW, "initialized OK"); |