unicorn/bindings/dotnet
kj.xwings.l 038b4f3345
Removed hardcoded CP0C3_ULRI (#1098)
* activate CP0C3_ULRI for CONFIG3, mips

* updated with mips patches

* updated with mips patches

* remove hardcoded config3

* git ignore vscode

* fix spacing issue and turn on floating point

Backports most of commit 24f55a7973278f20f0de21b904851d99d4716263 from
unicorn. Ignores internal core modifications, as this would be
special-casing non-upstreamed behavior.
2019-08-08 20:08:57 -04:00
..
UnicornManaged Removed hardcoded CP0C3_ULRI (#1098) 2019-08-08 20:08:57 -04:00
UnicornSamples Update dotnet bindings (#973) 2019-02-28 17:00:25 -05:00
README.md Fixed typo and minor code refactoring 2015-10-14 15:05:18 +02:00
UnicornDotNet.sln refactored code and minor bug fixing 2016-01-04 11:30:11 +01:00

This documentation explains how to use the .NET binding for Unicorn from source.

  1. Install the core engine as a dependency

    Follow README in the root directory to compile & install the core.

  2. Compile the code

    [Windows] To compile the code open the UnicornSln.sln with Microsoft Visual Studio 12 or with a newer version and just press Ctrl+Shift+B to build the solution.

    You need to have installed at least version 4.5 of the .NET framework.

    [Linux] TODO

  3. Usage

    The solution includes the testing project UnicornTests with examples of usage.

    In order to use the library in your project just add a reference to the .NET library and be sure to copy the unmanaged unicorn.dll library in the output directory.

    The naming convention used is the Upper Camel Case, this mean that to invoke the uc_mem_read method you have to search for the MemRead method.