//=========================================================================
// Summary  :
// Filename : Device.h
// Author   : marsh
// Project  :
// Revision : 1
// Created  : 2000/08/19
// Modified : 2000/08/19
//=========================================================================
// Description :
//=========================================================================
#ifndef _DEVICE_H
#define _DEVICE_H

#include "Process.h"

const short DEVICE_ID = 0x02;

class Device : public Process
{
public:

     Device( const char *, short, debug_t );

     virtual ~Device();

     //char *port()
	 // { return (_port != NULL) ? _port : ""; };

protected:

     //char *_port;

};

#endif
