Files
2023-04-12 22:04:03 +02:00

13 lines
214 B
C++

#ifndef FISH_HANDLER_MNEMONICS_HPP_
#define FISH_HANDLER_MNEMONICS_HPP_
#include <stdint.h>
enum fish_handler_mnemonics : uint16_t
{
FISH_MNEMONIC_UNKNOWN = 0x8000,
FISH_MNEMONIC_ALIGN,
};
#endif