Transistor Layout in progress

This commit is contained in:
The Coriolis Project 2008-05-06 16:50:15 +00:00
parent 0b6f74bda6
commit ab1448a18f
2 changed files with 13 additions and 1 deletions

View File

@ -1 +1,14 @@
#include "UpdateSession.h"
using namespace Hurricane;
#include "Transistor.h"
void Transistor::createLayout() {
UpdateSession::open();
//Net* source = transistor->getSource();
//Net* drain = transistor->getDrain();
//Net* grid = transistor->getGrid();
UpdateSession::close();
}

View File

@ -13,7 +13,6 @@ class Transistor : public Cell {
static Transistor* create(Library* library, const Name& name, const Polarity& polarity);
void createLayout();
void duplicateLayout();
bool isNmos() const { return polarity == N; };
bool isPmos() const { return polarity == P; };