├── .gitattributes ├── .gitignore ├── Default.groupproj ├── Int128d.pas ├── Int128p.dpk ├── Int128p.dproj ├── Test ├── Int128_Tests.dpr ├── Int128_Tests.dproj └── Int128d.TestCase.pas └── readme.adoc /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eStreamSoftware/delphi-int128/HEAD/.gitignore -------------------------------------------------------------------------------- /Default.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eStreamSoftware/delphi-int128/HEAD/Default.groupproj -------------------------------------------------------------------------------- /Int128d.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eStreamSoftware/delphi-int128/HEAD/Int128d.pas -------------------------------------------------------------------------------- /Int128p.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eStreamSoftware/delphi-int128/HEAD/Int128p.dpk -------------------------------------------------------------------------------- /Int128p.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eStreamSoftware/delphi-int128/HEAD/Int128p.dproj -------------------------------------------------------------------------------- /Test/Int128_Tests.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eStreamSoftware/delphi-int128/HEAD/Test/Int128_Tests.dpr -------------------------------------------------------------------------------- /Test/Int128_Tests.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eStreamSoftware/delphi-int128/HEAD/Test/Int128_Tests.dproj -------------------------------------------------------------------------------- /Test/Int128d.TestCase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eStreamSoftware/delphi-int128/HEAD/Test/Int128d.TestCase.pas -------------------------------------------------------------------------------- /readme.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eStreamSoftware/delphi-int128/HEAD/readme.adoc --------------------------------------------------------------------------------