├── .gitattributes ├── README.md ├── TinyProcessor.py ├── declarations.out ├── example.tag ├── example.tag.out ├── get_declarations.py ├── images └── README │ └── comparison.png └── references └── hooks.h /.gitattributes: -------------------------------------------------------------------------------- 1 | references/* linguist-vendored 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatmilkkk/TinyProcessor/HEAD/README.md -------------------------------------------------------------------------------- /TinyProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatmilkkk/TinyProcessor/HEAD/TinyProcessor.py -------------------------------------------------------------------------------- /declarations.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatmilkkk/TinyProcessor/HEAD/declarations.out -------------------------------------------------------------------------------- /example.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatmilkkk/TinyProcessor/HEAD/example.tag -------------------------------------------------------------------------------- /example.tag.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatmilkkk/TinyProcessor/HEAD/example.tag.out -------------------------------------------------------------------------------- /get_declarations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatmilkkk/TinyProcessor/HEAD/get_declarations.py -------------------------------------------------------------------------------- /images/README/comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatmilkkk/TinyProcessor/HEAD/images/README/comparison.png -------------------------------------------------------------------------------- /references/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatmilkkk/TinyProcessor/HEAD/references/hooks.h --------------------------------------------------------------------------------