Prepare CD code and unify header names

This commit is contained in:
2022-12-12 03:43:18 +01:00
parent 396f6da113
commit 0e4e53f3a4
19 changed files with 49 additions and 17 deletions

View File

@@ -0,0 +1,8 @@
#ifndef __JABYENGINE_CD_FILE_PROCESSOR_HPP__
#define __JABYENGINE_CD_FILE_PROCESSOR_HPP__
// This will be used as the file processor but will work on cd types
// Will probably use file_processor
// Will also setup the circular buffer for the CD code
#endif //!__JABYENGINE_CD_FILE_PROCESSOR_HPP__

View File

@@ -1,6 +1,6 @@
#ifndef __JABYENGINE_FILE_PROCESSOR_HPP__
#define __JABYENGINE_FILE_PROCESSOR_HPP__
#include "../File_Types.hpp"
#include "../file_types.hpp"
namespace FileProcessor {
class State {

View File

@@ -0,0 +1,6 @@
#ifndef __JABYENGINE_CD_FILE_TYPES_HPP__
#define __JABYENGINE_CD_FILE_TYPES_HPP__
// Will extend the file_types for using cd types
#endif //!__JABYENGINE_CD_FILE_TYPES_HPP__

View File

@@ -1,6 +1,6 @@
#ifndef __JABYENGINE_GPU_HPP__
#define __JABYENGINE_GPU_HPP__
#include "../System/IOPorts/GPU_IO.hpp"
#include "../System/IOPorts/gpu_io.hpp"
#if !defined(JABYENGINE_NTSC) && !defined(JABYENGINE_PAL)
#error "JABYENGINE_NTSC or JABYENGINE_PAL must be defined"

View File

@@ -1,6 +1,6 @@
#ifndef __JABYENGINE_DMA_IO_HPP__
#define __JABYENGINE_DMA_IO_HPP__
#include "IOPort.hpp"
#include "ioport.hpp"
namespace DMA {
struct __no_align MADR : public ComplexBitMap<uint32_t> {

View File

@@ -1,7 +1,7 @@
#ifndef __JABYENGINE_GPU_IO_HPP__
#define __JABYENGINE_GPU_IO_HPP__
#include "IOPort.hpp"
#include "../../GPU/GPU_Types.hpp"
#include "ioport.hpp"
#include "../../GPU/gpu_types.hpp"
namespace GPU {
enum struct SemiTransparency {

View File

@@ -1,6 +1,6 @@
#ifndef __JABYENGINE_SPU_IO_HPP__
#define __JABYENGINE_SPU_IO_HPP__
#include "IOPort.hpp"
#include "ioport.hpp"
namespace SPU {
enum struct Mode {