summaryrefslogtreecommitdiff
path: root/src/core/hw/hw.cpp
diff options
context:
space:
mode:
authorGravatar wwylele2017-01-01 14:58:02 +0200
committerGravatar wwylele2017-02-21 23:57:31 +0200
commitea1ea0224c04753402e0b6472080f0c5d90a7a46 (patch)
treed6823e52d913418d63ec3f0b7ed12eb763a98899 /src/core/hw/hw.cpp
parentMerge pull request #2562 from yuriks/pica-refactor3 (diff)
downloadyuzu-ea1ea0224c04753402e0b6472080f0c5d90a7a46.tar.gz
yuzu-ea1ea0224c04753402e0b6472080f0c5d90a7a46.tar.xz
yuzu-ea1ea0224c04753402e0b6472080f0c5d90a7a46.zip
HW: add AES engine & implement AES-CCM
Diffstat (limited to 'src/core/hw/hw.cpp')
-rw-r--r--src/core/hw/hw.cpp2
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 @@
4 4
5#include "common/common_types.h" 5#include "common/common_types.h"
6#include "common/logging/log.h" 6#include "common/logging/log.h"
7#include "core/hw/aes/key.h"
7#include "core/hw/gpu.h" 8#include "core/hw/gpu.h"
8#include "core/hw/hw.h" 9#include "core/hw/hw.h"
9#include "core/hw/lcd.h" 10#include "core/hw/lcd.h"
@@ -85,6 +86,7 @@ void Update() {}
85 86
86/// Initialize hardware 87/// Initialize hardware
87void Init() { 88void Init() {
89 AES::InitKeys();
88 GPU::Init(); 90 GPU::Init();
89 LCD::Init(); 91 LCD::Init();
90 LOG_DEBUG(HW, "initialized OK"); 92 LOG_DEBUG(HW, "initialized OK");