mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
With permission from the main authors [1], most of the code has been relicensed under the MIT license. SPDX license identifiers are used so that the license headers in source code files aren't too large. Add CONTRIBUTORS.rst file. [1] https://github.com/rednex/rgbds/issues/128 Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
73 lines
1.1 KiB
C
73 lines
1.1 KiB
C
/*
|
|
* This file is part of RGBDS.
|
|
*
|
|
* Copyright (c) 1997-2018, Carsten Sorensen and RGBDS contributors.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef RGBDS_LINKDEFS_H
|
|
#define RGBDS_LINKDEFS_H
|
|
|
|
enum eRpnData {
|
|
RPN_ADD = 0x00,
|
|
RPN_SUB = 0x01,
|
|
RPN_MUL = 0x02,
|
|
RPN_DIV = 0x03,
|
|
RPN_MOD = 0x04,
|
|
RPN_UNSUB = 0x05,
|
|
|
|
RPN_OR = 0x10,
|
|
RPN_AND = 0x11,
|
|
RPN_XOR = 0x12,
|
|
RPN_UNNOT = 0x13,
|
|
|
|
RPN_LOGAND = 0x21,
|
|
RPN_LOGOR = 0x22,
|
|
RPN_LOGUNNOT = 0x23,
|
|
|
|
RPN_LOGEQ = 0x30,
|
|
RPN_LOGNE = 0x31,
|
|
RPN_LOGGT = 0x32,
|
|
RPN_LOGLT = 0x33,
|
|
RPN_LOGGE = 0x34,
|
|
RPN_LOGLE = 0x35,
|
|
|
|
RPN_SHL = 0x40,
|
|
RPN_SHR = 0x41,
|
|
|
|
RPN_BANK_SYM = 0x50,
|
|
RPN_BANK_SECT = 0x51,
|
|
RPN_BANK_SELF = 0x52,
|
|
|
|
RPN_HRAM = 0x60,
|
|
|
|
RPN_CONST = 0x80,
|
|
RPN_SYM = 0x81
|
|
};
|
|
|
|
enum eSectionType {
|
|
SECT_WRAM0 = 0x00,
|
|
SECT_VRAM = 0x01,
|
|
SECT_ROMX = 0x02,
|
|
SECT_ROM0 = 0x03,
|
|
SECT_HRAM = 0x04,
|
|
SECT_WRAMX = 0x05,
|
|
SECT_SRAM = 0x06,
|
|
SECT_OAM = 0x07
|
|
};
|
|
|
|
enum eSymbolType {
|
|
SYM_LOCAL = 0x00,
|
|
SYM_IMPORT = 0x01,
|
|
SYM_EXPORT = 0x02
|
|
};
|
|
|
|
enum ePatchType {
|
|
PATCH_BYTE = 0x00,
|
|
PATCH_WORD_L = 0x01,
|
|
PATCH_LONG_L = 0x02
|
|
};
|
|
|
|
#endif /* RGBDS_LINKDEFS_H */
|