Create CD related files
This commit is contained in:
parent
5626e8ecb1
commit
c1bee684b9
|
@ -0,0 +1,11 @@
|
||||||
|
#ifndef __JABYENGINE_CD_IO_HPP__
|
||||||
|
#define __JABYENGINE_CD_IO_HPP__
|
||||||
|
#include "ioport.hpp"
|
||||||
|
|
||||||
|
namespace JabyEngine {
|
||||||
|
namespace CD_IO {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif //!__JABYENGINE_CD_IO_HPP__
|
|
@ -1,10 +1,12 @@
|
||||||
#ifndef __JABYENGINE_CD_HPP__
|
#ifndef __JABYENGINE_CD_INTERNAL_HPP__
|
||||||
#define __JABYENGINE_CD_HPP__
|
#define __JABYENGINE_CD_INTERNAL_HPP__
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
namespace JabyEngine {
|
namespace JabyEngine {
|
||||||
namespace CD {
|
namespace CD {
|
||||||
namespace internal {}
|
namespace internal {
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif //!__JABYENGINE_CD_HPP__
|
}
|
||||||
|
#endif //!__JABYENGINE_CD_INTERNAL_HPP__
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef __JABYENGINE_INTERNAL_GPU_HPP__
|
#ifndef __JABYENGINE_GPU_INTERNAL_HPP__
|
||||||
#define __JABYENGINE_INTERNAL_GPU_HPP__
|
#define __JABYENGINE_GPU_INTERNAL_HPP__
|
||||||
#include <PSX/GPU/gpu.hpp>
|
#include <PSX/GPU/gpu.hpp>
|
||||||
#include <PSX/System/IOPorts/dma_io.hpp>
|
#include <PSX/System/IOPorts/dma_io.hpp>
|
||||||
#include <PSX/System/IOPorts/gpu_io.hpp>
|
#include <PSX/System/IOPorts/gpu_io.hpp>
|
||||||
|
@ -117,4 +117,4 @@ namespace JabyEngine {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif //!__JABYENGINE_INTERNAL_GPU_HPP__
|
#endif //!__JABYENGINE_GPU_INTERNAL_HPP__
|
|
@ -0,0 +1,10 @@
|
||||||
|
#include "../../include/CD/cd_internal.hpp"
|
||||||
|
|
||||||
|
namespace JabyEngine {
|
||||||
|
namespace CD {
|
||||||
|
|
||||||
|
namespace internal {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue