2015-11-14 00:52:51 +00:00
|
|
|
auto SA1::serialize(serializer& s) -> void {
|
2012-04-29 06:16:44 +00:00
|
|
|
R65816::serialize(s);
|
2012-03-23 10:43:39 +00:00
|
|
|
Thread::serialize(s);
|
2010-08-09 13:28:56 +00:00
|
|
|
|
2012-07-08 02:57:34 +00:00
|
|
|
s.array(iram.data(), iram.size());
|
|
|
|
s.array(bwram.data(), bwram.size());
|
|
|
|
|
2010-08-09 13:28:56 +00:00
|
|
|
//sa1.hpp
|
2016-06-05 05:03:21 +00:00
|
|
|
s.integer(status.counter);
|
2010-08-09 13:28:56 +00:00
|
|
|
|
2016-06-05 05:03:21 +00:00
|
|
|
s.integer(status.interruptPending);
|
2010-08-09 13:28:56 +00:00
|
|
|
|
|
|
|
s.integer(status.scanlines);
|
|
|
|
s.integer(status.vcounter);
|
|
|
|
s.integer(status.hcounter);
|
|
|
|
|
|
|
|
//bus/bus.hpp
|
Update to v074r11 release.
byuu says:
Changelog:
- debugger compiles on all three profiles
- libsnes compiles on all three platforms (no API changes to libsnes)
- memory.cpp : namespace memory removed (wram -> cpu, apuram -> smp,
vram, oam, cgram -> ppu)
- sa1.cpp : namespace memory removed (SA-1 specific functions merged
inline to SA1::bus_read,write)
- GameBoy: added serial link support with interrupts and proper 8192hz
timing, but obviously it acts as if no other GB is connected to it
- GameBoy: added STAT OAM interrupt, and better STAT d1,d0 mode values
- UI: since Qt is dead, I've renamed the config files back to bsnes.cfg
and bsnes-geometry.cfg
- SA1: IRAM was not syncing to CPU on SA-1 side
- PPU/Accuracy and PPU/Performance needed Sprite oam renamed to Sprite
sprite; so that I could add uint8 oam[544]
- makes more sense anyway, OAM = object attribute memory, obj or
sprite are better names for Sprite rendering class
- more cleanup
2011-01-24 09:03:17 +00:00
|
|
|
s.array(iram.data(), iram.size());
|
2010-08-09 13:28:56 +00:00
|
|
|
|
Update to v074r11 release.
byuu says:
Changelog:
- debugger compiles on all three profiles
- libsnes compiles on all three platforms (no API changes to libsnes)
- memory.cpp : namespace memory removed (wram -> cpu, apuram -> smp,
vram, oam, cgram -> ppu)
- sa1.cpp : namespace memory removed (SA-1 specific functions merged
inline to SA1::bus_read,write)
- GameBoy: added serial link support with interrupts and proper 8192hz
timing, but obviously it acts as if no other GB is connected to it
- GameBoy: added STAT OAM interrupt, and better STAT d1,d0 mode values
- UI: since Qt is dead, I've renamed the config files back to bsnes.cfg
and bsnes-geometry.cfg
- SA1: IRAM was not syncing to CPU on SA-1 side
- PPU/Accuracy and PPU/Performance needed Sprite oam renamed to Sprite
sprite; so that I could add uint8 oam[544]
- makes more sense anyway, OAM = object attribute memory, obj or
sprite are better names for Sprite rendering class
- more cleanup
2011-01-24 09:03:17 +00:00
|
|
|
s.integer(cpubwram.dma);
|
2010-08-09 13:28:56 +00:00
|
|
|
|
|
|
|
//dma/dma.hpp
|
|
|
|
s.integer(dma.line);
|
|
|
|
|
|
|
|
//mmio/mmio.hpp
|
|
|
|
s.integer(mmio.sa1_irq);
|
|
|
|
s.integer(mmio.sa1_rdyb);
|
|
|
|
s.integer(mmio.sa1_resb);
|
|
|
|
s.integer(mmio.sa1_nmi);
|
|
|
|
s.integer(mmio.smeg);
|
|
|
|
|
|
|
|
s.integer(mmio.cpu_irqen);
|
|
|
|
s.integer(mmio.chdma_irqen);
|
|
|
|
|
|
|
|
s.integer(mmio.cpu_irqcl);
|
|
|
|
s.integer(mmio.chdma_irqcl);
|
|
|
|
|
|
|
|
s.integer(mmio.crv);
|
|
|
|
|
|
|
|
s.integer(mmio.cnv);
|
|
|
|
|
|
|
|
s.integer(mmio.civ);
|
|
|
|
|
|
|
|
s.integer(mmio.cpu_irq);
|
|
|
|
s.integer(mmio.cpu_ivsw);
|
|
|
|
s.integer(mmio.cpu_nvsw);
|
|
|
|
s.integer(mmio.cmeg);
|
|
|
|
|
|
|
|
s.integer(mmio.sa1_irqen);
|
|
|
|
s.integer(mmio.timer_irqen);
|
|
|
|
s.integer(mmio.dma_irqen);
|
|
|
|
s.integer(mmio.sa1_nmien);
|
|
|
|
|
|
|
|
s.integer(mmio.sa1_irqcl);
|
|
|
|
s.integer(mmio.timer_irqcl);
|
|
|
|
s.integer(mmio.dma_irqcl);
|
|
|
|
s.integer(mmio.sa1_nmicl);
|
|
|
|
|
|
|
|
s.integer(mmio.snv);
|
|
|
|
|
|
|
|
s.integer(mmio.siv);
|
|
|
|
|
|
|
|
s.integer(mmio.hvselb);
|
|
|
|
s.integer(mmio.ven);
|
|
|
|
s.integer(mmio.hen);
|
|
|
|
|
|
|
|
s.integer(mmio.hcnt);
|
|
|
|
|
|
|
|
s.integer(mmio.vcnt);
|
|
|
|
|
|
|
|
s.integer(mmio.cbmode);
|
|
|
|
s.integer(mmio.cb);
|
|
|
|
|
|
|
|
s.integer(mmio.dbmode);
|
|
|
|
s.integer(mmio.db);
|
|
|
|
|
|
|
|
s.integer(mmio.ebmode);
|
|
|
|
s.integer(mmio.eb);
|
|
|
|
|
|
|
|
s.integer(mmio.fbmode);
|
|
|
|
s.integer(mmio.fb);
|
|
|
|
|
|
|
|
s.integer(mmio.sbm);
|
|
|
|
|
|
|
|
s.integer(mmio.sw46);
|
|
|
|
s.integer(mmio.cbm);
|
|
|
|
|
|
|
|
s.integer(mmio.swen);
|
|
|
|
|
|
|
|
s.integer(mmio.cwen);
|
|
|
|
|
|
|
|
s.integer(mmio.bwp);
|
|
|
|
|
|
|
|
s.integer(mmio.siwp);
|
|
|
|
|
|
|
|
s.integer(mmio.ciwp);
|
|
|
|
|
|
|
|
s.integer(mmio.dmaen);
|
|
|
|
s.integer(mmio.dprio);
|
|
|
|
s.integer(mmio.cden);
|
|
|
|
s.integer(mmio.cdsel);
|
|
|
|
s.integer(mmio.dd);
|
|
|
|
s.integer(mmio.sd);
|
|
|
|
|
|
|
|
s.integer(mmio.chdend);
|
|
|
|
s.integer(mmio.dmasize);
|
|
|
|
s.integer(mmio.dmacb);
|
|
|
|
|
|
|
|
s.integer(mmio.dsa);
|
|
|
|
|
|
|
|
s.integer(mmio.dda);
|
|
|
|
|
|
|
|
s.integer(mmio.dtc);
|
|
|
|
|
|
|
|
s.integer(mmio.bbf);
|
|
|
|
|
|
|
|
s.array(mmio.brf);
|
|
|
|
|
|
|
|
s.integer(mmio.acm);
|
|
|
|
s.integer(mmio.md);
|
|
|
|
|
|
|
|
s.integer(mmio.ma);
|
|
|
|
|
|
|
|
s.integer(mmio.mb);
|
|
|
|
|
|
|
|
s.integer(mmio.hl);
|
|
|
|
s.integer(mmio.vb);
|
|
|
|
|
|
|
|
s.integer(mmio.va);
|
|
|
|
s.integer(mmio.vbit);
|
|
|
|
|
|
|
|
s.integer(mmio.cpu_irqfl);
|
|
|
|
s.integer(mmio.chdma_irqfl);
|
|
|
|
|
|
|
|
s.integer(mmio.sa1_irqfl);
|
|
|
|
s.integer(mmio.timer_irqfl);
|
|
|
|
s.integer(mmio.dma_irqfl);
|
|
|
|
s.integer(mmio.sa1_nmifl);
|
|
|
|
|
|
|
|
s.integer(mmio.hcr);
|
|
|
|
|
|
|
|
s.integer(mmio.vcr);
|
|
|
|
|
|
|
|
s.integer(mmio.mr);
|
|
|
|
|
|
|
|
s.integer(mmio.overflow);
|
|
|
|
}
|