mirror of https://github.com/bsnes-emu/bsnes.git
12 lines
335 B
C++
Executable File
12 lines
335 B
C++
Executable File
#ifdef MEMORY_CPP
|
|
|
|
void Bus::serialize(serializer &s) {
|
|
s.array(memory::wram.data(), memory::wram.size());
|
|
s.array(memory::apuram.data(), memory::apuram.size());
|
|
s.array(memory::vram.data(), memory::vram.size());
|
|
s.array(memory::oam.data(), memory::oam.size());
|
|
s.array(memory::cgram.data(), memory::cgram.size());
|
|
}
|
|
|
|
#endif
|