mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
32x and sms savestates. Core-independent z80 state. SS bugfixing/refactoring.
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@868 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
a736af3ecf
commit
b4db550e41
19 changed files with 1116 additions and 848 deletions
|
@ -34,6 +34,7 @@ extern void cache_flush_d_inval_i(const void *start_addr, const void *end_addr);
|
|||
// attempt to alloc mem at specified address.
|
||||
// alloc anywhere else if that fails (callers should handle that)
|
||||
extern void *plat_mmap(unsigned long addr, size_t size);
|
||||
extern void *plat_mremap(void *ptr, size_t oldsize, size_t newsize);
|
||||
extern void plat_munmap(void *ptr, size_t size);
|
||||
|
||||
// this one should handle display mode changes
|
||||
|
@ -119,12 +120,11 @@ extern picohw_state PicoPicohw;
|
|||
|
||||
// area.c
|
||||
int PicoState(const char *fname, int is_save);
|
||||
int PicoStateLoadVDP(const char *fname);
|
||||
int PicoStateLoadGfx(const char *fname);
|
||||
void *PicoTmpStateSave(void);
|
||||
void PicoTmpStateRestore(void *data);
|
||||
extern void (*PicoStateProgressCB)(const char *str);
|
||||
|
||||
// cd/area.c
|
||||
int PicoCdLoadStateGfx(void *file);
|
||||
|
||||
// cd/buffering.c
|
||||
void PicoCDBufferInit(void);
|
||||
void PicoCDBufferFree(void);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue