SameBoy | Accurate GB/GBC emulator |
| download: https://git.y1.nz/archives/sameboy.tar.gz | |
| README | Files | Log | Refs | LICENSE |
Core/rewind.h
1 #pragma once
2
3 #ifndef GB_DISABLE_REWIND
4 #include <stdbool.h>
5 #include "defs.h"
6
7 #ifdef GB_INTERNAL
8 internal void GB_rewind_push(GB_gameboy_t *gb);
9 internal void GB_rewind_invalidate_for_backstepping(GB_gameboy_t *gb);
10 #endif
11 bool GB_rewind_pop(GB_gameboy_t *gb);
12 void GB_set_rewind_length(GB_gameboy_t *gb, double seconds);
13 void GB_rewind_reset(GB_gameboy_t *gb);
14 #endif
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.