Codebase list ponyprog / upstream/3.1.1+ds SrcPony / x2444.h
upstream/3.1.1+ds

Tree @upstream/3.1.1+ds (Download .tar.gz)

x2444.h @upstream/3.1.1+dsraw · history · blame

//=========================================================================//
//                                                                         //
//  PonyProg - Serial Device Programmer                                    //
//                                                                         //
//  Copyright (C) 1997-2020   Claudio Lanconelli                           //
//                                                                         //
//  http://ponyprog.sourceforge.net                                        //
//                                                                         //
//-------------------------------------------------------------------------//
//                                                                         //
// This program is free software; you can redistribute it and/or           //
// modify it under the terms of the GNU  General Public License            //
// as published by the Free Software Foundation; either version2 of        //
// the License, or (at your option) any later version.                     //
//                                                                         //
// This program is distributed in the hope that it will be useful,         //
// but WITHOUT ANY WARRANTY; without even the implied warranty of          //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU       //
// General Public License for more details.                                //
//                                                                         //
// You should have received a copy of the GNU  General Public License      //
// along with this program (see LICENSE);     if not, write to the         //
// Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. //
//                                                                         //
//=========================================================================//

#ifndef _X2444_H
#define _X2444_H

#include "types.h"

#include "x2444bus.h"
#include "device.h"


class X2444 : public Device
{
  public:

	X2444(e2AppWinInfo *wininfo = 0, BusIO *busp = 0);

	int Read(int probe = 1, int type = ALL_TYPE);
	int Write(int probe = 1, int type = ALL_TYPE);
	int Verify(int type = ALL_TYPE);

	virtual void DefaultBankSize();

  protected:

	X2444Bus *GetBus()
	{
		return static_cast<X2444Bus *>(Device::GetBus());
	}

  private:

};
#endif