Mercurial > repos > blastem
view blastem.h @ 2674:07cc0f7109f0
Fix an issue in which CD timer interrupts could get missed, at least with the new interpreter
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Sun, 09 Mar 2025 22:53:04 -0700 |
parents | 6f8400ce7a0f |
children |
line wrap: on
line source
#ifndef BLASTEM_H_ #define BLASTEM_H_ #include "tern.h" #include "system.h" extern int headless; extern int exit_after; extern int z80_enabled; extern int frame_limit; extern tern_node * config; extern system_header *current_system; extern char *save_state_path; extern char *save_filename; extern uint8_t use_native_states; void reload_media(void); void lockon_media(char *lock_on_path); void init_system_with_media(char *path, system_type force_stype); void apply_updated_config(void); const system_media *current_media(void); #endif //BLASTEM_H_