README.md

This commit is contained in:
redcode
2016-05-05 18:01:17 +02:00
parent edf681eed1
commit ee544b0fe6

View File

@@ -35,9 +35,10 @@ Name | Description
--- | ---
CPU_Z80_DYNAMIC | Needed to build a shared library. Exports the public symbols.
CPU_Z80_BUILD_ABI | Builds the ABI of type `ZCPUEmulatorABI` declared in the header with the identifier `abi_emulation_cpu_z80`.
CPU_Z80_BUILD_MODULE_ABI | Builds a generic module ABI of type `ZModuleABI`. This constant enables `CPU_Z80_BUILD_ABI` automatically so `abi_emulation_cpu_z80` will be build too. This option is intended to be used when building a true module loadable at runtime with `dlopen()`, `LoadLibrary()` or similar, and can be accessed retrieving the **weak** symbol `__module_abi__`.
CPU_Z80_HIDE_API |
CPU_Z80_HIDE_ABI |
CPU_Z80_BUILD_MODULE_ABI | Builds a generic module ABI of type `ZModuleABI`. This constant enables `CPU_Z80_BUILD_ABI` automatically so `abi_emulation_cpu_z80` will be build too. This option is intended to be used when building a true module loadable at runtime with `dlopen()`, `LoadLibrary()` or similar. The module ABI can be accessed retrieving the **weak** symbol `__module_abi__`.
CPU_Z80_HIDE_API | Makes the API functions private.
CPU_Z80_HIDE_ABI | Makes the `abi_emulation_cpu_z80` private.
CPU_Z80_USE_LOCAL_HEADER | Use this if you have imported _Z80.h_ and _Z80.c_ to your project. _Z80.c_ will include `"Z80.h"` instead of `<emulation/CPU/Z80.h>`
## API
@@ -127,7 +128,10 @@ void z80_int(Z80 *object, zboolean state);
***Return value***
none.
## Callbacks
## History
* __[v1.0.0](http://github.com/Z80/releases/tag/v1.0.0)__ _(2016-05-02)_
* __[v1.0.0](http://github.com/Z80/releases/tag/v1.0.0)__ _(2016-05-05)_
* Initial release.