core includes are fully relative now

This commit is contained in:
SergioMartin86 2024-03-29 20:00:30 +01:00
parent 2dbcd81c60
commit 60033bc99e
11 changed files with 22 additions and 20 deletions

View File

@ -46,20 +46,20 @@
#include <config.h>
#include "../cart_hw/svp/svp.h"
#include "../input_hw/input.h"
#include "../m68k/m68k.h"
#include "../system.h"
#include "../loadrom.h"
#include "../genesis.h"
#include "../mem68k.h"
#include "../membnk.h"
#include "../state.h"
#include "eeprom_i2c.h"
#include "eeprom_spi.h"
#include "megasd.h"
#include "m68k/m68k.h"
#include "md_cart.h"
#include "mem68k.h"
#include "membnk.h"
#include "sram.h"
#include "ggenie.h"
#include "areplay.h"
#include "state.h"
/* Cart database entry */
typedef struct

View File

@ -38,7 +38,7 @@
#ifndef _HW_CDD_
#define _HW_CDD_
#include "sound/blip_buf.h"
#include "../sound/blip_buf.h"
#if defined(USE_LIBVORBIS)
#include <vorbis/vorbisfile.h>

View File

@ -41,9 +41,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "types.h"
#include "../../../macros.h"
#include "../../../types.h"
#include "osd.h"
#include "macros.h"
#include "chd.h"
#include "cdrom.h"
#include "flac.h"

View File

@ -38,7 +38,7 @@
#ifndef _CD_PCM_
#define _CD_PCM_
#include "sound/blip_buf.h"
#include "../sound/blip_buf.h"
/* PCM channel */
typedef struct

View File

@ -38,10 +38,10 @@
****************************************************************************************/
#include "../system.h"
#include "../m68k/m68k.h"
#include "../z80/z80.h"
#include "../input_hw/input.h"
#include "gamepad.h"
#include "m68k/m68k.h"
#include "z80/z80.h"
#include "input_hw/input.h"
struct
{

View File

@ -39,7 +39,7 @@
#pragma once
#include "io_ctrl.h"
#include "../io_ctrl.h"
/* Max. number of devices */
#define MAX_DEVICES (8)

View File

@ -41,8 +41,8 @@
#include "../genesis.h"
#include "../m68k/m68k.h"
#include "../z80/z80.h"
#include "vdp_ctrl.h"
#include "io_ctrl.h"
#include "../vdp_ctrl.h"
#include "../io_ctrl.h"
#include "input.h"
/************************************************************************************/

View File

@ -42,9 +42,10 @@
/* ======================================================================== */
#include <setjmp.h>
#include "macros.h"
#include "../macros.h"
#ifdef HOOK_CPU
#include "cpuhook.h"
#include "../debug/cpuhook.h"
#endif
/* ======================================================================== */

View File

@ -34,7 +34,7 @@
#include <string.h>
#include <math.h>
#include "eq.h"
#include "macros.h"
#include "../macros.h"
/* -----------

View File

@ -125,9 +125,10 @@
* http://www.msxnet.org/tech/z80-documented.pdf
*****************************************************************************/
#include "string.h"
#include <string.h>
#include "../macros.h"
#include "z80.h"
#include "macros.h"
/* execute main opcodes inside a big switch statement */
#define BIG_SWITCH 1

View File

@ -2,7 +2,7 @@
#ifndef _CONFIG_H_
#define _CONFIG_H_
#include "types.h"
#include <types.h>
#include <main.h>
/****************************************************************************