Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sgraf812/derelictudis86
A dynamic binding to http://udis86.sourceforge.net/ for the D Programming Language.
https://github.com/sgraf812/derelictudis86
Last synced: 5 days ago
JSON representation
A dynamic binding to http://udis86.sourceforge.net/ for the D Programming Language.
- Host: GitHub
- URL: https://github.com/sgraf812/derelictudis86
- Owner: sgraf812
- Created: 2013-10-11T10:55:34.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-12T22:45:41.000Z (about 11 years ago)
- Last Synced: 2024-11-18T15:13:32.231Z (2 months ago)
- Language: D
- Size: 152 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
DerelictUdis86
============*Warning: this an unofficial Derelict binding.*
A dynamic binding to [udis86](http://udis86.sourceforge.net/) for the D Programming Language.
For information on how to build DerelictUdis86 and link it with your programs, please see the post [Building and Using Packages in DerelictOrg](http://dblog.aldacron.net/forum/index.php?topic=841.0) at the Derelict forums.
For information on how to load the udis86 library via DerelictUdis86, see the page [DerelictUtil for Users](https://github.com/DerelictOrg/DerelictUtil/wiki/DerelictUtil-for-Users) at the DerelictUtil Wiki. In the meantime, here's some sample code.
```D
import derelict.udis86.udis86void main() {
// Load the udis86 library.
DerelictUdis86.load();
// Now udis86 functions can be called.
...
}
```