Fixed compilation issues

This commit is contained in:
Stanislav Shwartsman 2009-03-22 09:52:48 +00:00
parent 8c05b177dd
commit 700e492228
3 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: instrument.cc,v 1.28 2009-02-09 10:35:55 vruppert Exp $
// $Id: instrument.cc,v 1.29 2009-03-22 09:52:48 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001 MandrakeSoft S.A.
@ -29,6 +29,7 @@
#include "bochs.h"
#include "cpu/cpu.h"
#include "disasm/disasm.h"
// maximum size of an instruction
#define MAX_OPCODE_SIZE 16

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: instrument.cc,v 1.23 2009-02-09 10:35:55 vruppert Exp $
// $Id: instrument.cc,v 1.24 2009-03-22 09:52:48 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001 MandrakeSoft S.A.
@ -28,6 +28,7 @@
#include "bochs.h"
#include "cpu/cpu.h"
#include "disasm/disasm.h"
bxInstrumentation *icpu = NULL;

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: instrument.h,v 1.32 2009-02-09 10:35:55 vruppert Exp $
// $Id: instrument.h,v 1.33 2009-03-22 09:52:48 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001 MandrakeSoft S.A.
@ -56,6 +56,10 @@
class bxInstruction_c;
void bx_instr_init_env(void);
void bx_instr_exit_env(void);
void bx_instr_initialize(unsigned cpu);
// maximum size of an instruction
#define MAX_OPCODE_SIZE 16