Added AGI stalls to 486 and later CPUs.

Reworked codegen timing a bit - split timing tables into CPU-specific and generic files.
A few other timing tweaks.
This commit is contained in:
SarahW 2017-07-23 17:41:24 +01:00
commit a883399781
17 changed files with 1755 additions and 763 deletions

View file

@ -1,3 +1,8 @@
#ifndef _CODEGEN_OPS_H_
#define _CODEGEN_OPS_H_
#include "codegen.h"
typedef uint32_t (*RecompOpFn)(uint8_t opcode, uint32_t fetchdat, uint32_t op_32, uint32_t op_pc, codeblock_t *block);
extern RecompOpFn recomp_opcodes[512];
@ -37,3 +42,5 @@ RecompOpFn recomp_opcodes_REPNE[512];
#define REG_DH 6
#define REG_BL 3
#define REG_BH 7
#endif