mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-24 23:22:25 +01:00
byuu says: Note: balanced/performance profiles still broken, sorry. Changelog: - added nall/GNUmakefile unique() function; used on linking phase of higan - added nall/unique_pointer - target-tomoko and {System}::Video updated to use unique_pointer<ClassName> instead of ClassName* [1] - locate() updated to search multiple paths [2] - GB: pass gekkio's if_ie_registers and boot_hwio-G test ROMs - FC, GB, GBA: merge video/ into the PPU cores - ruby: fixed ~AudioXAudio2() typo [1] I expected this to cause new crashes on exit due to changing the order of destruction of objects (and deleting things that weren't deleted before), but ... so far, so good. I guess we'll see what crops up, especially on OS X (which is already crashing for unknown reasons on exit.) [2] right now, the search paths are: programpath(), {configpath(), "higan/"}, {localpath(), "higan/"}; but we can add as many more as we want, and we can also add platform-specific versions.
57 lines
1.2 KiB
C++
57 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <emulator/emulator.hpp>
|
|
#include <processor/r6502/r6502.hpp>
|
|
|
|
namespace Famicom {
|
|
namespace Info {
|
|
static const string Name = "bnes";
|
|
static const uint SerializerVersion = 2;
|
|
}
|
|
}
|
|
|
|
/*
|
|
bnes - Famicom emulator
|
|
authors: byuu, Ryphecha
|
|
license: GPLv3
|
|
project started: 2011-09-05
|
|
*/
|
|
|
|
#include <libco/libco.h>
|
|
|
|
namespace Famicom {
|
|
struct Thread {
|
|
~Thread() {
|
|
if(thread) co_delete(thread);
|
|
}
|
|
|
|
auto create(auto (*entrypoint)() -> void, uint frequency) -> void {
|
|
if(thread) co_delete(thread);
|
|
thread = co_create(65536 * sizeof(void*), entrypoint);
|
|
this->frequency = frequency;
|
|
clock = 0;
|
|
}
|
|
|
|
auto serialize(serializer& s) -> void {
|
|
s.integer(frequency);
|
|
s.integer(clock);
|
|
}
|
|
|
|
cothread_t thread = nullptr;
|
|
uint frequency = 0;
|
|
int64 clock = 0;
|
|
};
|
|
|
|
#include <fc/system/system.hpp>
|
|
#include <fc/scheduler/scheduler.hpp>
|
|
#include <fc/input/input.hpp>
|
|
#include <fc/memory/memory.hpp>
|
|
#include <fc/cartridge/cartridge.hpp>
|
|
#include <fc/cpu/cpu.hpp>
|
|
#include <fc/apu/apu.hpp>
|
|
#include <fc/ppu/ppu.hpp>
|
|
#include <fc/cheat/cheat.hpp>
|
|
}
|
|
|
|
#include <fc/interface/interface.hpp>
|