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,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__