├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── spec ├── example.c └── example2.c ├── speck.c ├── speck.h └── speck.mk /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-dept/speck/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-dept/speck/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-dept/speck/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-dept/speck/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-dept/speck/HEAD/README.md -------------------------------------------------------------------------------- /spec/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-dept/speck/HEAD/spec/example.c -------------------------------------------------------------------------------- /spec/example2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-dept/speck/HEAD/spec/example2.c -------------------------------------------------------------------------------- /speck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-dept/speck/HEAD/speck.c -------------------------------------------------------------------------------- /speck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-dept/speck/HEAD/speck.h -------------------------------------------------------------------------------- /speck.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-dept/speck/HEAD/speck.mk --------------------------------------------------------------------------------