Introduce JabyEngine configuration file

This commit is contained in:
2024-01-02 20:29:36 -06:00
parent f1d4197762
commit 837073fcda
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;
};
};
}