Comes from help forum:<br><br>"...as currently the part of ktechlab that  describes what PICs are supported is quite messy."<br><br>If you have an idea about how it should be, i can try the work.<br><br>About what pics are supported i only can find src/micro/picinfoXXbit.h<br>
there are the pic classes and what kind of support:<br><br>class PicInfo16F627 : public PicInfo16F62x<br>{<br>    public:<br>        PicInfo16F627();<br>        ~PicInfo16F627();<br>        virtual Support gpsimSupport() const { return FullSupport; }<br>
        virtual Support flowcodeSupport() const { return PartialSupport; }<br>        virtual Support microbeSupport() const { return FullSupport; }<br>};<br><br>In src/micro/picinfoXXbit.cpp are defined the pins layouts<br>
<br>And in src/micro/microlibrary.cpp and .h picinfo items are added to library.<br><br>Adding items to these files allow to simulate some models, is easy to add some derived models, for example the "A" series: 16f-627a-628a-648a, 16f876a-877a, etc. that are actually supported by gpsim and i think that actually are more used than the "no A" series.<br>