Prepare CD code and unify header names
This commit is contained in:
18
src/Library/include/CD/cd.hpp
Normal file
18
src/Library/include/CD/cd.hpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef __JABYENGINE_CD_HPP__
|
||||
#define __JABYENGINE_CD_HPP__
|
||||
#include <stdint.h>
|
||||
|
||||
namespace CD {
|
||||
namespace CircularBuffer {
|
||||
extern uint8_t* write_ptr;
|
||||
extern uint8_t* read_ptr;
|
||||
extern uint8_t* end_ptr;
|
||||
}
|
||||
|
||||
enum struct State {
|
||||
};
|
||||
|
||||
extern State state;
|
||||
}
|
||||
|
||||
#endif //!__JABYENGINE_CD_HPP__
|
||||
Reference in New Issue
Block a user