14 lines
205 B
C
14 lines
205 B
C
#ifndef X86_H
|
|
#define X86_H
|
|
|
|
void x86_init();
|
|
void x86_poll();
|
|
|
|
void x86_set_image(int num, char *filename);
|
|
|
|
void x86_config_load();
|
|
void x86_config_save();
|
|
void x86_set_fdd_boot(uint32_t boot);
|
|
|
|
#endif
|