This repository has been archived by the owner on Oct 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
z80.h
59 lines (50 loc) · 1.81 KB
/
z80.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* Xep128: Minimalistic Enterprise-128 emulator with focus on "exotic" hardware
Copyright (C)2015,2016 LGB (Gábor Lénárt) <[email protected]>
http://xep128.lgb.hu/
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifndef __XEP128_Z80_H_INCLUDED
#define __XEP128_Z80_H_INCLUDED
/* Modified Z80ex features requested */
#ifdef CONFIG_Z180
#define Z80EX_Z180_SUPPORT
#endif
#define Z80EX_ED_TRAPPING_SUPPORT
#define Z80EX_CALLBACK_PROTOTYPE extern
/* Types, instead of Z80ex's own, we want our SDL ones */
#include "SDL_types.h"
#define Z80EX_TYPES_DEFINED
#define Z80EX_BYTE Uint8
#define Z80EX_SIGNED_BYTE Sint8
#define Z80EX_WORD Uint16
#define Z80EX_DWORD Uint32
/* Endian related stuffs for Z80ex */
#include "SDL_endian.h"
#ifndef SDL_BYTEORDER
# error "SDL_BYTEORDER is not defined!"
#endif
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
# ifdef Z80EX_WORDS_BIG_ENDIAN
# undef Z80EX_WORDS_BIG_ENDIAN
# endif
# define ENDIAN_GOOD
#elif SDL_BYTEORDER == SDL_BIG_ENDIAN
# ifndef Z80EX_WORDS_BIG_ENDIAN
# define Z80EX_WORDS_BIG_ENDIAN
# endif
# define ENDIAN_UGLY
#else
# error "SDL_BYTEORDER is not SDL_LIL_ENDIAN neither SDL_BIG_ENDIAN"
#endif
#include "z80ex/z80ex.h"
#include "z80ex/z80ex_dasm.h"
#endif