mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-06-02 01:06:50 +02:00
14 lines
274 B
C++
14 lines
274 B
C++
#pragma once
|
|
|
|
/// @brief Class for clearing the arm9 IO registers.
|
|
class Arm7IoRegisterClearer
|
|
{
|
|
public:
|
|
/// @brief Clears the arm7 IO registers.
|
|
void ClearIoRegisters() const;
|
|
|
|
private:
|
|
void ClearNtrIoRegisters() const;
|
|
void ClearTwlIoRegisters() const;
|
|
};
|