Bochs/bochs/iodev/iodebug.h
Bryce Denney 7fdc7303c2 - add "void reset(unsigned type)" method to every I/O device.
Some devices already had one.  Some I had to add an empty one.
  I did a little cleaning of init() methods to make them more uniform
  but generally I left them alone.
- I also put these exact diffs into a patch "patch.iodev-add-reset"
  in case I want to revert these changes for some reason, for example
  if they break an old patch.  It should be deleted after a while.
2002-08-27 19:54:46 +00:00

38 lines
1.1 KiB
C++

/////////////////////////////////////////////////////////////////////////
// $Id: iodebug.h,v 1.5 2002-08-27 19:54:46 bdenney Exp $
/////////////////////////////////////////////////////////////////////////
//
#ifndef _BX_IODEBUG_H
#define _BX_IODEBUG_H
#include "config.h"
#define BX_IODEBUG_THIS this->
#define BX_IODEBUG_MAX_AREAS 30
class bx_iodebug_c : public logfunctions
{
public:
bx_iodebug_c( void );
~bx_iodebug_c( void );
int init( bx_devices_c * );
void reset (unsigned type);
static void mem_write( BX_CPU_C *cpu, Bit32u addr, unsigned len, void *data);
static void mem_read( BX_CPU_C *cpu, Bit32u addr, unsigned len, void *data);
private:
static Bit32u read_handler(void *this_ptr, Bit32u address, unsigned io_len);
static void write_handler(void *this_ptr, Bit32u address, Bit32u value, unsigned io_len);
Bit32u read(Bit32u addr, unsigned int io_len);
void write(Bit32u addr, Bit32u dvalue, unsigned int io_len);
static unsigned int range_test(Bit32u addr, unsigned int len);
static void add_range( Bit32u addr_start, Bit32u addr_end);
bx_devices_c *devices;
};
extern bx_iodebug_c bx_iodebug;
#endif