mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
17 lines
225 B
C++
17 lines
225 B
C++
#ifndef FLX_H
|
|
#define FLX_H
|
|
|
|
#define FLX_TICK_NS 40 /* ns per tick */
|
|
|
|
/* Special FLX opcodes */
|
|
|
|
enum
|
|
{
|
|
FLX_INDEX = 0x08,
|
|
FLX_STOP = 0x0d
|
|
};
|
|
|
|
extern std::unique_ptr<Fluxmap> readFlxBytes(const Bytes& bytes);
|
|
|
|
#endif
|