Correct header file extension

This commit is contained in:
Jaby
2022-10-02 16:45:02 +02:00
parent bf439893aa
commit e5943cb3d2
2 changed files with 4 additions and 4 deletions

17
include/PSX/GPU/GPU.hpp Normal file
View File

@@ -0,0 +1,17 @@
#ifndef __JABYENGINE_GPU_HPP__
#define __JABYENGINE_GPU_HPP__
#include "../System/IOPorts/GPU_IO.hpp"
namespace GPU {
namespace Display {
static void enable() {
GP1.write(Command::GP1::SetDisplayState(DisplayState::On));
}
static void disable() {
GP1.write(Command::GP1::SetDisplayState(DisplayState::Off));
}
}
}
#endif //!__JABYENGINE_GPU_HPP__