| Previous | 199869 Revisions | Next |
| r34105 Monday 29th December, 2014 at 22:23:51 UTC by Wilbert Pol |
|---|
| Move some includes around to fix compile errors on OSX; if this breaks any other environments then feel free to revert this. (nw) |
| [src/emu] | emucore.h |
| [src/lib/formats] | coco_cas.c cpis_dsk.c d88_dsk.c dim_dsk.c dsk_dsk.c imd_dsk.c m20_dsk.c pasti_dsk.c |
| [src/mame/drivers] | ksys573.c |
| [src/osd/modules/debugger] | debugosx.m |
| [src/tools] | nltool.c |
| r242616 | r242617 | |
|---|---|---|
| 21 | 21 | #include <stdlib.h> |
| 22 | 22 | #include <stdarg.h> |
| 23 | 23 | |
| 24 | #include <sstream> | |
| 25 | ||
| 24 | 26 | // some cleanups for Solaris for things defined in stdlib.h |
| 25 | 27 | #ifdef SDLMAME_SOLARIS |
| 26 | 28 | #undef si_status |
| r242616 | r242617 | |
|---|---|---|
| 31 | 31 | |
| 32 | 32 | **************************************************************************/ |
| 33 | 33 | |
| 34 | #include "emu.h" | |
| 34 | 35 | #include "coco_cas.h" |
| 35 | #include "emu.h" | |
| 36 | 36 | |
| 37 | 37 | #define COCO_WAVESAMPLES_HEADER (1.0) |
| 38 | 38 | #define COCO_WAVESAMPLES_TRAILER (1.0) |
| r242616 | r242617 | |
|---|---|---|
| 8 | 8 | |
| 9 | 9 | #include <string.h> |
| 10 | 10 | |
| 11 | #include "emu.h" | |
| 11 | 12 | #include "formats/cpis_dsk.h" |
| 12 | 13 | #include "formats/basicdsk.h" |
| 13 | 14 |
| r242616 | r242617 | |
|---|---|---|
| 27 | 27 | * |
| 28 | 28 | */ |
| 29 | 29 | |
| 30 | #include "emu.h" | |
| 30 | 31 | #include "flopimg.h" |
| 31 | 32 | #include "imageutl.h" |
| 32 | 33 |
| r242616 | r242617 | |
|---|---|---|
| 8 | 8 | |
| 9 | 9 | #include <string.h> |
| 10 | 10 | |
| 11 | #include "emu.h" | |
| 11 | 12 | #include "dim_dsk.h" |
| 12 | 13 | #include "basicdsk.h" |
| 13 | 14 |
| r242616 | r242617 | |
|---|---|---|
| 8 | 8 | |
| 9 | 9 | #include <string.h> |
| 10 | 10 | |
| 11 | #include "emu.h" | |
| 11 | 12 | #include "imageutl.h" |
| 12 | 13 | #include "flopimg.h" |
| 13 | 14 |
| r242616 | r242617 | |
|---|---|---|
| 7 | 7 | *********************************************************************/ |
| 8 | 8 | |
| 9 | 9 | #include <string.h> |
| 10 | #include "emu.h" | |
| 10 | 11 | #include "flopimg.h" |
| 11 | 12 | |
| 12 | 13 | struct imddsk_tag |
| r242616 | r242617 | |
|---|---|---|
| 14 | 14 | |
| 15 | 15 | #include <string.h> |
| 16 | 16 | |
| 17 | #include "emu.h" | |
| 17 | 18 | #include "m20_dsk.h" |
| 18 | 19 | #include "basicdsk.h" |
| 19 | 20 |
| r242616 | r242617 | |
|---|---|---|
| 1 | #include "emu.h" | |
| 1 | 2 | #include "pasti_dsk.h" |
| 2 | #include "emu.h" | |
| 3 | 3 | |
| 4 | 4 | // Pasti format supported using the documentation at |
| 5 | 5 | // http://www.sarnau.info/atari:pasti_file_format |
| r242616 | r242617 | |
|---|---|---|
| 342 | 342 | |
| 343 | 343 | */ |
| 344 | 344 | |
| 345 | #include "cdrom.h" | |
| 346 | 345 | #include "cpu/psx/psx.h" |
| 347 | 346 | #include "machine/adc083x.h" |
| 348 | 347 | #include "machine/ataintf.h" |
| r242616 | r242617 | |
| 361 | 360 | #include "sound/spu.h" |
| 362 | 361 | #include "sound/cdda.h" |
| 363 | 362 | #include "video/psx.h" |
| 363 | #include "cdrom.h" | |
| 364 | 364 | |
| 365 | 365 | #define VERBOSE_LEVEL ( 0 ) |
| 366 | 366 |
| r242616 | r242617 | |
|---|---|---|
| 22 | 22 | // * Scroll views with content narrower than clipping area are flaky under Tiger - nothing I can do about this |
| 23 | 23 | |
| 24 | 24 | |
| 25 | // Workaround for Nil being re=defined in luabridge | |
| 26 | #include "emu.h" | |
| 27 | ||
| 25 | 28 | // standard Cocoa headers |
| 26 | 29 | #include <AvailabilityMacros.h> |
| 27 | 30 | #import <Cocoa/Cocoa.h> |
| 28 | 31 | |
| 29 | 32 | // MAME headers |
| 30 | #include "emu.h" | |
| 33 | //#include "emu.h" | |
| 31 | 34 | #include "debug/debugvw.h" |
| 32 | 35 | #include "debug/debugcon.h" |
| 33 | 36 | #include "debug/debugcpu.h" |
| r242616 | r242617 | |
|---|---|---|
| 10 | 10 | #include <stdlib.h> |
| 11 | 11 | #include <string.h> |
| 12 | 12 | #include <ctype.h> |
| 13 | #include <sstream> | |
| 13 | 14 | #include "astring.h" |
| 14 | 15 | #include "corefile.h" |
| 15 | 16 | #include "corestr.h" |
| https://github.com/mamedev/mame/commit/dedb5c5d2225983f05af4d9dd810978d1f5a5126 |
| Previous | 199869 Revisions | Next |