INL-retro-progdump/shared/shared_errors.h

19 lines
385 B
C

#ifndef _error_codes_h
#define _error_codes_h
#define SUCCESS 0
//greater than 128 are possible avr return codes
#define ERR_UNKN_DICTIONARY 128
#define ERR_BAD_PP_OP_MINMAX 129
#define ERR_UNKN_PP_OPCODE_ONLY 139
#define ERR_UNKN_PP_OPCODE_8BOP 130
#define ERR_UNKN_PP_OPCODE_16BOP 131
#define ERR_UNKN_PP_OPCODE_24BOP 132
#define ERR_UNKN_PP_OPCODE_8BRV 133
#endif