├── .gitignore ├── GNUmakefile ├── LICENSE ├── README.md ├── TODO ├── gtest.cpp ├── lib ├── x86_64-darwin-libo.s └── x86_64-linux-libo.s ├── otest.c ├── overflow.c ├── overflow.h └── smul.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.a 2 | *.o 3 | test 4 | -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiw/libo/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiw/libo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiw/libo/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiw/libo/HEAD/TODO -------------------------------------------------------------------------------- /gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiw/libo/HEAD/gtest.cpp -------------------------------------------------------------------------------- /lib/x86_64-darwin-libo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiw/libo/HEAD/lib/x86_64-darwin-libo.s -------------------------------------------------------------------------------- /lib/x86_64-linux-libo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiw/libo/HEAD/lib/x86_64-linux-libo.s -------------------------------------------------------------------------------- /otest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiw/libo/HEAD/otest.c -------------------------------------------------------------------------------- /overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiw/libo/HEAD/overflow.c -------------------------------------------------------------------------------- /overflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiw/libo/HEAD/overflow.h -------------------------------------------------------------------------------- /smul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiw/libo/HEAD/smul.c --------------------------------------------------------------------------------