Introduce JabyEngine configuration file

This commit is contained in:
Jaby
2024-01-02 20:29:36 -06:00
committed by Jaby
parent f71b9abdb6
commit cf7c88c72c
4 changed files with 28 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
#include "GPU/gpu_types.hpp"
namespace JabyEngine {
struct Configuration {
struct BIOSFont {
static constexpr auto TextureLoadPos = GPU::PositionU16::create(320, 256);
static constexpr auto CLUTLoadPos = GPU::PositionU16::create(320, 511);
};
struct Periphery {
static constexpr bool UsePortB = false;
static constexpr bool UseMultiTap = false;
};
};
}