- 86Box's own headers go to /86box - munt's public interface goes to /mt32emu - all slirp headers go to /slirp (might want to consider using only its public inteface) - single file headers from other projects go in include root
9 lines
440 B
C
9 lines
440 B
C
extern void mca_init(int nr_cards);
|
|
extern void mca_add(uint8_t (*read)(int addr, void *priv), void (*write)(int addr, uint8_t val, void *priv), uint8_t (*feedb)(void *priv), void (*reset)(void *priv), void *priv);
|
|
extern void mca_set_index(int index);
|
|
extern uint8_t mca_read(uint16_t port);
|
|
extern void mca_write(uint16_t port, uint8_t val);
|
|
extern uint8_t mca_feedb(void);
|
|
extern void mca_reset(void);
|
|
|
|
extern void ps2_cache_clean(void); |