From d15276557c65de2a1941632ec9024dea261cce26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedikt=20B=C3=B6hm?= Date: Tue, 7 Jul 2009 09:46:27 +0200 Subject: make instruction 64-bit wide to support more than 32 registers --- src/emu/cpu.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/emu/cpu.h') diff --git a/src/emu/cpu.h b/src/emu/cpu.h index 4867a8a..9294d7d 100644 --- a/src/emu/cpu.h +++ b/src/emu/cpu.h @@ -4,6 +4,8 @@ #include #include +#include "opc.h" + /* cpu traps */ enum { TRP_UNALIGNED, @@ -33,6 +35,6 @@ extern bool N, Z; extern uint32_t *GPR; /* main cpu execution function */ -void execute(uint32_t IR); +void execute(inst_t IR); #endif -- cgit v1.2.3