Making apus independently named
This commit is contained in:
parent
d487148444
commit
129e5e130b
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
// Emu 0.7.0. http://www.slack.net/~ant/
|
// Emu 0.7.0. http://www.slack.net/~ant/
|
||||||
|
|
||||||
#include "apu.hpp"
|
#include "apu_fme7.hpp"
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
||||||
/* Copyright (C) 2003-2006 Shay Green. This module is free software; you
|
/* Copyright (C) 2003-2006 Shay Green. This module is free software; you
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
// Snd_Emu 0.1.7. http://www.slack.net/~ant/
|
// Snd_Emu 0.1.7. http://www.slack.net/~ant/
|
||||||
|
|
||||||
#include "apu.hpp"
|
#include "apu_namco.hpp"
|
||||||
#include "../blipBuffer.hpp"
|
#include "../blipBuffer.hpp"
|
||||||
|
|
||||||
/* Copyright (C) 2003-2006 Shay Green. This module is free software; you
|
/* Copyright (C) 2003-2006 Shay Green. This module is free software; you
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
// Snd_Emu 0.1.7. http://www.slack.net/~ant/
|
// Snd_Emu 0.1.7. http://www.slack.net/~ant/
|
||||||
|
|
||||||
#include "apu.hpp"
|
#include "apu_vrc6.hpp"
|
||||||
|
|
||||||
/* Copyright (C) 2003-2006 Shay Green. This module is free software; you
|
/* Copyright (C) 2003-2006 Shay Green. This module is free software; you
|
||||||
can redistribute it and/or modify it under the terms of the GNU Lesser
|
can redistribute it and/or modify it under the terms of the GNU Lesser
|
|
@ -1,5 +1,5 @@
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include "apu.hpp"
|
#include "apu_vrc7.hpp"
|
||||||
#include "emu2413.hpp"
|
#include "emu2413.hpp"
|
||||||
|
|
||||||
namespace quickerNES
|
namespace quickerNES
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
// Emu 0.7.0. http://www.slack.net/~ant/
|
// Emu 0.7.0. http://www.slack.net/~ant/
|
||||||
|
|
||||||
#include "../apu/namco/apu.hpp"
|
#include "../apu/namco/apu_namco.hpp"
|
||||||
#include "mapper.hpp"
|
#include "mapper.hpp"
|
||||||
|
|
||||||
/* Copyright (C) 2004-2006 Shay Green. This module is free software; you
|
/* Copyright (C) 2004-2006 Shay Green. This module is free software; you
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
// Konami VRC6 mapper
|
// Konami VRC6 mapper
|
||||||
// Emu 0.7.0. http://www.slack.net/~ant/
|
// Emu 0.7.0. http://www.slack.net/~ant/
|
||||||
|
|
||||||
#include "../apu/vrc6/apu.hpp"
|
#include "../apu/vrc6/apu_vrc6.hpp"
|
||||||
#include "mapper.hpp"
|
#include "mapper.hpp"
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
// Emu 0.7.0. http://www.slack.net/~ant/libs/
|
// Emu 0.7.0. http://www.slack.net/~ant/libs/
|
||||||
|
|
||||||
#include "../apu/fme7/apu.hpp"
|
#include "../apu/fme7/apu_fme7.hpp"
|
||||||
#include "mapper.hpp"
|
#include "mapper.hpp"
|
||||||
|
|
||||||
/* Copyright (C) 2005 Chris Moeller */
|
/* Copyright (C) 2005 Chris Moeller */
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
// Emu 0.5.4. http://www.slack.net/~ant/
|
// Emu 0.5.4. http://www.slack.net/~ant/
|
||||||
|
|
||||||
#include "../apu/vrc7/apu.hpp"
|
#include "../apu/vrc7/apu_vrc7.hpp"
|
||||||
#include "mapper.hpp"
|
#include "mapper.hpp"
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
||||||
|
|
|
@ -8,12 +8,12 @@ quickerNESAPUSrc = [
|
||||||
'core/apu/NESEffectsBuffer.cpp',
|
'core/apu/NESEffectsBuffer.cpp',
|
||||||
'core/apu/effectsBuffer.cpp',
|
'core/apu/effectsBuffer.cpp',
|
||||||
'core/apu/multiBuffer.cpp',
|
'core/apu/multiBuffer.cpp',
|
||||||
'core/apu/namco/apu.cpp',
|
'core/apu/namco/apu_namco.cpp',
|
||||||
'core/apu/vrc6/apu.cpp',
|
'core/apu/vrc6/apu_vrc6.cpp',
|
||||||
'core/apu/vrc7/emu2413.cpp',
|
'core/apu/vrc7/emu2413.cpp',
|
||||||
'core/apu/vrc7/emu2413_state.cpp',
|
'core/apu/vrc7/emu2413_state.cpp',
|
||||||
'core/apu/vrc7/apu.cpp',
|
'core/apu/vrc7/apu_vrc7.cpp',
|
||||||
'core/apu/fme7/apu.cpp',
|
'core/apu/fme7/apu_fme7.cpp',
|
||||||
]
|
]
|
||||||
|
|
||||||
quickerNESPPUSrc = [
|
quickerNESPPUSrc = [
|
||||||
|
|
Loading…
Reference in New Issue