diff options
author | 2008-01-25 09:30:43 +0000 | |
---|---|---|
committer | 2008-01-25 09:30:43 +0000 | |
commit | 4930b2dbfd341f1619de955570223a24f4d10d30 (patch) | |
tree | bd178c33a85f6749e58f839a365449de188ac355 /src/emu/cpu/z80gb/z80gb.c | |
parent | 877b75ad75a758d62b158af6688a88f5f61c8860 (diff) |
- Added deprecat.h that contains some deprecated/discouraged contructs (see below)
The idea is to create extra work if a driver wants to use these and hopefully
gives an incentive to look for an alternate solution
- Added #include of deprecat.h that rely on these contructs
- Removed a bunch of unneccassary #include's from these files
Diffstat (limited to 'src/emu/cpu/z80gb/z80gb.c')
-rw-r--r-- | src/emu/cpu/z80gb/z80gb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/cpu/z80gb/z80gb.c b/src/emu/cpu/z80gb/z80gb.c index 4d7b8984ca8..68c4c7d2be4 100644 --- a/src/emu/cpu/z80gb/z80gb.c +++ b/src/emu/cpu/z80gb/z80gb.c @@ -36,8 +36,9 @@ /** Split fetch and execute cycles. **/ /** **/ /*************************************************************/ -#include "z80gb.h" #include "debugger.h" +#include "deprecat.h" +#include "z80gb.h" #define FLAG_Z 0x80 #define FLAG_N 0x40 |