Changes since v0.7 : - Major CPU reorganisation. This has possibly broken some stuff, though I fixed all the regressions I could find - Lazy flags. This brought 10% speed improvement at one point, but that's probably been lost now - 430 VX chipset emulation - IDT Winchip emulation (currently sans MMX). Timing is probably wrong - Fixed a few FPU bugs - Timer reorganisation - Sound reorganisation - Other general reorganisation - AdLib Gold emulation - Windows Sound System emulation - Pro Audio Spectrum 16 emulation. This currently works with most DOS stuff, but not in Windows - Major improvements to GUS emulation. Has the downside that it now conflicts with SB emulation, so probably best to not enable both simultaneously - New graphics cards : - ATI-18800 (VGA Edge-16) - ATI-28800 (VGA Charger) - ATI Mach64GX (Graphics Pro Turbo). Quite a few features missing, but Windows doesn't seem to use half the features of this card - Cirrus Logic CL-GD5429. Blitter is a bit broken - Oak OTI-067 - S3 Trio64 (Number Nine 9FX) - S3 Virge. Only framebuffer stuff at the minute, Windows won't recognise the card - Trident TGUI-9440 - VGA. Doesn't work yet - Beginnings of 3DFX emulation, however this is in extremely early stages and doesn't do anything useful - Fixed DMA bug stopping floppy drives working in Windows 3.x - Fixed some other stuff probably - Broke some other stuff probably as well
99 lines
1.8 KiB
C
99 lines
1.8 KiB
C
uint16_t oldcs;
|
|
uint32_t oldpc;
|
|
extern uint32_t rmdat32;
|
|
int oldcpl;
|
|
|
|
int tempc;
|
|
int cycles,output;
|
|
int ssegs;
|
|
int firstrepcycle;
|
|
|
|
uint32_t easeg,eaaddr,ealimit,ealimitw;
|
|
int rm,reg,mod,rmdat;
|
|
|
|
int skipnextprint;
|
|
int inhlt;
|
|
|
|
uint8_t opcode;
|
|
int ins,noint;
|
|
|
|
uint16_t lastcs,lastpc;
|
|
int timetolive,keyboardtimer;
|
|
|
|
#define setznp168 setznp16
|
|
|
|
#define getr8(r) ((r&4)?regs[r&3].b.h:regs[r&3].b.l)
|
|
#define getr16(r) regs[r].w
|
|
#define getr32(r) regs[r].l
|
|
|
|
#define setr8(r,v) if (r&4) regs[r&3].b.h=v; \
|
|
else regs[r&3].b.l=v;
|
|
#define setr16(r,v) regs[r].w=v
|
|
#define setr32(r,v) regs[r].l=v
|
|
|
|
uint8_t znptable8[256];
|
|
uint16_t znptable16[65536];
|
|
|
|
int use32;
|
|
int stack32;
|
|
|
|
#define fetchea() { rmdat=readmemb(cs+pc); pc++; \
|
|
reg=(rmdat>>3)&7; \
|
|
mod=(rmdat>>6)&3; \
|
|
rm=rmdat&7; \
|
|
if (mod!=3) fetcheal(); }
|
|
|
|
|
|
int optype;
|
|
#define JMP 1
|
|
#define CALL 2
|
|
#define IRET 3
|
|
#define INT 4
|
|
|
|
uint32_t oxpc;
|
|
|
|
extern uint16_t *mod1add[2][8];
|
|
extern uint32_t *mod1seg[8];
|
|
|
|
|
|
#define IRQTEST ((flags&I_FLAG) && (pic.pend&~pic.mask) && !ssegs && !noint)
|
|
|
|
extern int cgate32;
|
|
|
|
|
|
extern uint32_t *eal_r, *eal_w;
|
|
|
|
|
|
extern uint32_t flags_zn;
|
|
extern uint8_t flags_p;
|
|
#define FLAG_N (flags_zn>>31)
|
|
#define FLAG_Z (flags_zn)
|
|
#define FLAG_P (znptable8[flags_p]&P_FLAG)
|
|
|
|
extern int gpf;
|
|
|
|
|
|
enum
|
|
{
|
|
ABRT_NONE = 0,
|
|
ABRT_GEN,
|
|
ABRT_TS = 0xA,
|
|
ABRT_NP = 0xB,
|
|
ABRT_SS = 0xC,
|
|
ABRT_GPF = 0xD,
|
|
ABRT_PF = 0xE
|
|
};
|
|
|
|
extern int abrt;
|
|
extern uint32_t abrt_error;
|
|
|
|
void x86_doabrt(int x86_abrt);
|
|
|
|
extern uint8_t opcode2;
|
|
|
|
extern uint16_t rds;
|
|
extern uint32_t rmdat32;
|
|
|
|
extern int inscounts[256];
|
|
|
|
void x86illegal();
|