back when i templateized cpu core things I forgot to switch over some stuff
This commit is contained in:
parent
cf03432643
commit
6c81c25c70
|
@ -48,10 +48,10 @@ extern volatile BOOL execute;
|
||||||
#else
|
#else
|
||||||
#define READ32(a,b) MMU_read32(PROCNUM, b)
|
#define READ32(a,b) MMU_read32(PROCNUM, b)
|
||||||
#define WRITE32(a,b,c) MMU_write32(PROCNUM,b,c)
|
#define WRITE32(a,b,c) MMU_write32(PROCNUM,b,c)
|
||||||
#define READ16(a,b) MMU_read16(cpu->proc_ID, b)
|
#define READ16(a,b) MMU_read16(PROCNUM, b)
|
||||||
#define WRITE16(a,b,c) MMU_write16(cpu->proc_ID,b,c)
|
#define WRITE16(a,b,c) MMU_write16(PROCNUM,b,c)
|
||||||
#define READ8(a,b) MMU_read8(cpu->proc_ID, b)
|
#define READ8(a,b) MMU_read8(PROCNUM, b)
|
||||||
#define WRITE8(a,b,c) MMU_write8(cpu->proc_ID,b,c)
|
#define WRITE8(a,b,c) MMU_write8(PROCNUM,b,c)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -49,12 +49,12 @@ extern volatile BOOL execute;
|
||||||
#define READ8(a,b) cpu->mem_if->read8(a,b)
|
#define READ8(a,b) cpu->mem_if->read8(a,b)
|
||||||
#define WRITE8(a,b,c) cpu->mem_if->write8(a,b,c)
|
#define WRITE8(a,b,c) cpu->mem_if->write8(a,b,c)
|
||||||
#else
|
#else
|
||||||
#define READ32(a,b) MMU_read32(cpu->proc_ID, b)
|
#define READ32(a,b) MMU_read32(PROCNUM, b)
|
||||||
#define WRITE32(a,b,c) MMU_write32(cpu->proc_ID,b,c)
|
#define WRITE32(a,b,c) MMU_write32(PROCNUM,b,c)
|
||||||
#define READ16(a,b) MMU_read16(cpu->proc_ID, b)
|
#define READ16(a,b) MMU_read16(PROCNUM, b)
|
||||||
#define WRITE16(a,b,c) MMU_write16(cpu->proc_ID,b,c)
|
#define WRITE16(a,b,c) MMU_write16(PROCNUM,b,c)
|
||||||
#define READ8(a,b) MMU_read8(cpu->proc_ID, b)
|
#define READ8(a,b) MMU_read8(PROCNUM, b)
|
||||||
#define WRITE8(a,b,c) MMU_write8(cpu->proc_ID,b,c)
|
#define WRITE8(a,b,c) MMU_write8(PROCNUM,b,c)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
TEMPLATE static u32 FASTCALL OP_UND_THUMB()
|
TEMPLATE static u32 FASTCALL OP_UND_THUMB()
|
||||||
|
|
Loading…
Reference in New Issue