sprites 256c, shadow oam, sprite transforms, sinlut
[gbajam21] / tools / mmutil / errors.h
1 /****************************************************************************
2  *                                                          __              *
3  *                ____ ___  ____ __  ______ ___  ____  ____/ /              *
4  *               / __ `__ \/ __ `/ |/ / __ `__ \/ __ \/ __  /               *
5  *              / / / / / / /_/ />  </ / / / / / /_/ / /_/ /                *
6  *             /_/ /_/ /_/\__,_/_/|_/_/ /_/ /_/\____/\__,_/                 *
7  *                                                                          *
8  *         Copyright (c) 2008, Mukunda Johnson (mukunda@maxmod.org)         *
9  *                                                                          *
10  * Permission to use, copy, modify, and/or distribute this software for any *
11  * purpose with or without fee is hereby granted, provided that the above   *
12  * copyright notice and this permission notice appear in all copies.        *
13  *                                                                          *
14  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES *
15  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF         *
16  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR  *
17  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES   *
18  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN    *
19  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF  *
20  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.           *
21  ****************************************************************************/
22
23 #ifndef ERRORS_H
24 #define ERRORS_H
25
26 #define ERR_NONE                        0x00
27 #define ERR_INVALID_MODULE      0x01
28 #define ERR_MANYARGS            0x02
29 #define ERR_NOINPUT                     0x03
30 #define ERR_NOWRITE                     0x04
31 #define ERR_MANYCHANNELS        0x05
32 #define ERR_UNKNOWNSAMPLE       0x06
33 #define ERR_UNKNOWNPATTERN      0x07
34 #define ERR_UNKNOWNINST         0x08
35 #define ERR_TOOMANYSAMPLES      0x09
36 #define ERR_UNKNOWNINPUT        0x0A
37 #define ERR_BADINPUT            0x0B
38 #define ERR_RETARDEDSCRIPT      0x0C
39
40 #endif