mirror of
https://github.com/86Box/86Box.git
synced 2026-02-21 09:05:32 -07:00
Vx0: Rename wait() to wait_vx0() in order to fix warnings on Mac.
This commit is contained in:
@@ -41,11 +41,11 @@
|
||||
#include <86box/plat_unused.h>
|
||||
#include "vx0_biu.h"
|
||||
|
||||
#define do_cycle() wait(1)
|
||||
#define do_cycle() wait_vx0(1)
|
||||
#define do_cycle_no_modrm() if (!nx) \
|
||||
do_cycle()
|
||||
#define do_cycle_i() do_cycle()
|
||||
#define do_cycles(c) wait(c)
|
||||
#define do_cycles(c) wait_vx0(c)
|
||||
#define do_cycles_i(c) do_cycles(c)
|
||||
#define do_cycle_nx() nx = 1
|
||||
#define do_cycle_nx_i() nx = 1
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
#include <86box/plat_unused.h>
|
||||
#include "vx0_biu.h"
|
||||
|
||||
#define do_cycle() wait(1)
|
||||
#define do_cycle() wait_vx0(1)
|
||||
#define do_cycle_i() do_cycle()
|
||||
|
||||
uint8_t biu_preload_byte = 0x00;
|
||||
@@ -705,7 +705,7 @@ biu_eu_request(void)
|
||||
}
|
||||
|
||||
void
|
||||
wait(int c)
|
||||
wait_vx0(int c)
|
||||
{
|
||||
x808x_biu_log("[%04X:%04X] %02X %i cycles\n", CS, cpu_state.pc, opcode, c);
|
||||
|
||||
|
||||
@@ -78,7 +78,7 @@ enum {
|
||||
|
||||
/* Temporary BIU externs - move to 808x_biu.h. */
|
||||
extern void biu_resume_on_queue_read(void);
|
||||
extern void wait(int c);
|
||||
extern void wait_vx0(int c);
|
||||
extern void biu_reset(void);
|
||||
extern void cpu_io_vx0(int bits, int out, uint16_t port);
|
||||
extern void biu_state_set_eu(void);
|
||||
|
||||
Reference in New Issue
Block a user