File indexing completed on 2024-04-14 05:36:54

0001 /***************************************************************************
0002  *   Copyright (C) 2003-2004 by David Saxton                               *
0003  *   david@bluehaze.org                                                    *
0004  *                                                                         *
0005  *   This program is free software; you can redistribute it and/or modify  *
0006  *   it under the terms of the GNU General Public License as published by  *
0007  *   the Free Software Foundation; either version 2 of the License, or     *
0008  *   (at your option) any later version.                                   *
0009  ***************************************************************************/
0010 
0011 #ifndef PICINFO_H
0012 #define PICINFO_H
0013 
0014 #include "microinfo.h"
0015 
0016 /**
0017 This is the base class for all 12bit, 14bit and 16bit PICs.
0018 Thanks go to gpsim & Scott Dattalo for some of the hierachal PIC class
0019 structure used here :-)
0020 @short Base class for all PICMicros
0021 @author David Saxton
0022 */
0023 class PicInfo : public MicroInfo
0024 {
0025 public:
0026     PicInfo();
0027     ~PicInfo() override;
0028     AsmInfo *instructionSet() override = 0;
0029 };
0030 
0031 #endif