mirror of
https://github.com/MiSTer-devel/Main_MiSTer.git
synced 2026-04-12 03:04:02 +00:00
17 lines
318 B
C
17 lines
318 B
C
#ifndef X86_H
|
|
#define X86_H
|
|
|
|
void x86_init();
|
|
void x86_poll(int only_ide);
|
|
void x86_ide_set();
|
|
|
|
void x86_set_image(int num, char *filename);
|
|
const char* x86_get_image_name(int num);
|
|
const char* x86_get_image_path(int num);
|
|
|
|
void x86_config_load();
|
|
void x86_config_save();
|
|
void x86_set_fdd_boot(uint32_t boot);
|
|
|
|
#endif
|