Documented three more functions.

This commit is contained in:
OBattler
2025-02-13 05:27:10 +01:00
parent 91ba20fbd0
commit 63fbe6ab4f
2 changed files with 7 additions and 0 deletions

View File

@@ -1119,6 +1119,10 @@ pc_send_cae(void)
/* /*
Currently available API: Currently available API:
extern void resetx86(void);
extern void softresetx86(void);
extern void hardresetx86(void);
extern void prefetch_queue_set_pos(int pos); extern void prefetch_queue_set_pos(int pos);
extern void prefetch_queue_set_ip(uint16_t ip); extern void prefetch_queue_set_ip(uint16_t ip);
extern void prefetch_queue_set_prefetching(int p); extern void prefetch_queue_set_prefetching(int p);

View File

@@ -829,4 +829,7 @@ extern uint16_t prefetch_queue_get_ip(void);
extern int prefetch_queue_get_prefetching(void); extern int prefetch_queue_get_prefetching(void);
extern int prefetch_queue_get_size(void); extern int prefetch_queue_get_size(void);
#define prefetch_queue_set_suspended(s) prefetch_queue_set_prefetching(!s)
#define prefetch_queue_get_suspended !prefetch_queue_get_prefetching
#endif /*EMU_CPU_H*/ #endif /*EMU_CPU_H*/