pokeheartgold/tools/elfcoder/encoding_constants.h
taxicat1 008118b6b3 Address review comments
- all local vars to camelcase
- header include guards with lib name
- comments for preprocessor directives
- asm defs back to respective .inc files
- /lib/dsprot/tools/ merged to /tools/
- unprefixed globals prefixed
- sdk defs consolidated to sdk include
- lsf lib split to objects
2025-11-09 02:59:34 -05:00

15 lines
271 B
C

#ifndef ENCODING_CONSTANTS_H
#define ENCODING_CONSTANTS_H
#define ENC_VAL_1 (0x1300)
#define ENC_VAL_2 ((ENC_VAL_1 >> 2) + 2)
#define ENC_OPCODE_1 (0x01)
#define ENC_OPCODE_2 (0xF0)
#define ENC_BYTE_A (0x56)
#define ENC_BYTE_B (0x65)
#define ENC_BYTE_C (0x56)
#endif