diff options
| author | 2017-01-01 14:58:02 +0200 | |
|---|---|---|
| committer | 2017-02-21 23:57:31 +0200 | |
| commit | ea1ea0224c04753402e0b6472080f0c5d90a7a46 (patch) | |
| tree | d6823e52d913418d63ec3f0b7ed12eb763a98899 /src/core/hw/hw.cpp | |
| parent | Merge pull request #2562 from yuriks/pica-refactor3 (diff) | |
| download | yuzu-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.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 @@ | |||
| 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 |
| 87 | void Init() { | 88 | void 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"); |