├── .gitignore ├── LICENSE ├── README.md ├── examples ├── Makefile └── simple.c └── plugin ├── Harness.py ├── Node.py ├── PCodeInterpreter.py ├── Struct.py └── go.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimm-co/GEARSHIFT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimm-co/GEARSHIFT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimm-co/GEARSHIFT/HEAD/README.md -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimm-co/GEARSHIFT/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimm-co/GEARSHIFT/HEAD/examples/simple.c -------------------------------------------------------------------------------- /plugin/Harness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimm-co/GEARSHIFT/HEAD/plugin/Harness.py -------------------------------------------------------------------------------- /plugin/Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimm-co/GEARSHIFT/HEAD/plugin/Node.py -------------------------------------------------------------------------------- /plugin/PCodeInterpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimm-co/GEARSHIFT/HEAD/plugin/PCodeInterpreter.py -------------------------------------------------------------------------------- /plugin/Struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimm-co/GEARSHIFT/HEAD/plugin/Struct.py -------------------------------------------------------------------------------- /plugin/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimm-co/GEARSHIFT/HEAD/plugin/go.py --------------------------------------------------------------------------------