Correct header file extension

This commit is contained in:
2022-10-02 16:45:02 +02:00
parent 194b1f0f9c
commit e126fdaceb
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__