Move the flx stuff into external.

This commit is contained in:
David Given
2024-10-16 00:00:09 +02:00
parent 900ba11623
commit ec271a67ad
6 changed files with 5 additions and 5 deletions

16
lib/external/flx.h vendored Normal file
View File

@@ -0,0 +1,16 @@
#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