summaryrefslogtreecommitdiff
path: root/apps/plugins/xworld/intern.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/xworld/intern.h')
-rw-r--r--apps/plugins/xworld/intern.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/apps/plugins/xworld/intern.h b/apps/plugins/xworld/intern.h
new file mode 100644
index 0000000000..3355f28eb1
--- /dev/null
+++ b/apps/plugins/xworld/intern.h
@@ -0,0 +1,44 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2014 Franklin Wei, Benjamin Brown
11 * Copyright (C) 2004 Gregory Montoir
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ***************************************************************************/
22
23#ifndef __INTERN_H__
24#define __INTERN_H__
25
26#include "plugin.h"
27#include "string.h"
28#include "awendian.h"
29#include "util.h"
30
31#define assert(c) (c?(void)0:error("Assertion failed line %d, file %s", __LINE__, __FILE__))
32
33struct Ptr {
34 uint8_t* pc;
35};
36
37uint8_t scriptPtr_fetchByte(struct Ptr* p) ICODE_ATTR;
38uint16_t scriptPtr_fetchWord(struct Ptr* p) ICODE_ATTR;
39
40struct Point {
41 int16_t x, y;
42};
43
44#endif