mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-04-15 06:06:51 -05:00
- 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
15 lines
271 B
C
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
|