summaryrefslogtreecommitdiff
path: root/src/core/hw/hw.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-02 14:58:01 -0400
committerGitHub <noreply@github.com>2018-08-02 14:58:01 -0400
commit4de18e054b7b7bcd71561548f73571ee9e5b8aea (patch)
tree307732a9c85e47c019d9c013bef4c211b9b4e3f2 /src/core/hw/hw.h
parentbae1822aede2a990c63c1a50b17ad526c1410cc3 (diff)
parentc6db1c390b748646d77f38f92529f706eaa6b6ae (diff)
Merge pull request #899 from lioncash/unused
hw: Remove unused files
Diffstat (limited to 'src/core/hw/hw.h')
-rw-r--r--src/core/hw/hw.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/core/hw/hw.h b/src/core/hw/hw.h
deleted file mode 100644
index 5890d2b5c..000000000
--- a/src/core/hw/hw.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// Copyright 2014 Citra Emulator Project
-// Licensed under GPLv2 or any later version
-// Refer to the license.txt file included.
-
-#pragma once
-
-#include "common/common_types.h"
-
-namespace HW {
-
-/// Beginnings of IO register regions, in the user VA space.
-enum : u32 {
- VADDR_HASH = 0x1EC01000,
- VADDR_CSND = 0x1EC03000,
- VADDR_DSP = 0x1EC40000,
- VADDR_PDN = 0x1EC41000,
- VADDR_CODEC = 0x1EC41000,
- VADDR_SPI = 0x1EC42000,
- VADDR_SPI_2 = 0x1EC43000, // Only used under TWL_FIRM?
- VADDR_I2C = 0x1EC44000,
- VADDR_CODEC_2 = 0x1EC45000,
- VADDR_HID = 0x1EC46000,
- VADDR_GPIO = 0x1EC47000,
- VADDR_I2C_2 = 0x1EC48000,
- VADDR_SPI_3 = 0x1EC60000,
- VADDR_I2C_3 = 0x1EC61000,
- VADDR_MIC = 0x1EC62000,
- VADDR_PXI = 0x1EC63000,
- VADDR_LCD = 0x1ED02000,
- VADDR_DSP_2 = 0x1ED03000,
- VADDR_HASH_2 = 0x1EE01000,
- VADDR_GPU = 0x1EF00000,
-};
-
-template <typename T>
-void Read(T& var, const u32 addr);
-
-template <typename T>
-void Write(u32 addr, const T data);
-
-/// Update hardware
-void Update();
-
-/// Initialize hardware
-void Init();
-
-/// Shutdown hardware
-void Shutdown();
-
-} // namespace HW