├── .gitignore ├── LICENCE.TXT ├── README.md ├── c_src ├── Makefile ├── float16.c └── test.c ├── include └── float16.h ├── test ├── Makefile ├── comp.h ├── conv.c ├── conv.h └── test.c └── z80 ├── Makefile ├── float_z80.asm └── test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-beilis/float16/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-beilis/float16/HEAD/LICENCE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-beilis/float16/HEAD/README.md -------------------------------------------------------------------------------- /c_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-beilis/float16/HEAD/c_src/Makefile -------------------------------------------------------------------------------- /c_src/float16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-beilis/float16/HEAD/c_src/float16.c -------------------------------------------------------------------------------- /c_src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-beilis/float16/HEAD/c_src/test.c -------------------------------------------------------------------------------- /include/float16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-beilis/float16/HEAD/include/float16.h -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-beilis/float16/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-beilis/float16/HEAD/test/comp.h -------------------------------------------------------------------------------- /test/conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-beilis/float16/HEAD/test/conv.c -------------------------------------------------------------------------------- /test/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-beilis/float16/HEAD/test/conv.h -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-beilis/float16/HEAD/test/test.c -------------------------------------------------------------------------------- /z80/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-beilis/float16/HEAD/z80/Makefile -------------------------------------------------------------------------------- /z80/float_z80.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-beilis/float16/HEAD/z80/float_z80.asm -------------------------------------------------------------------------------- /z80/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-beilis/float16/HEAD/z80/test.c --------------------------------------------------------------------------------