This commit is contained in:
redcode
2018-11-03 07:35:25 +01:00
parent 10fee57420
commit 43268f95cf
2 changed files with 2 additions and 2 deletions

2
README
View File

@@ -73,7 +73,7 @@ Code configuration
or if you have added Z80.h and Z80.c to your project.
CPU_Z80_USE_ABI
Tells Z80.h to declare the prototype of the CPU emulator ABI.
Tells Z80.h to declare the prototype of the generic CPU emulator ABI.
CPU_Z80_USE_LOCAL_HEADER
Use this if you have imported Z80.h and Z80.c to your project. Z80.c will

View File

@@ -47,7 +47,7 @@ Name | Description
`CPU_Z80_HIDE_ABI` | Makes the generic CPU emulator ABI private.
`CPU_Z80_HIDE_API` | Makes the public functions private.
`CPU_Z80_STATIC` | You need to define this to compile or use the emulator as a static library or if you have added `Z80.h` and `Z80.c` to your project.
`CPU_Z80_USE_ABI` | Tells `Z80.h` to declare the prototype of the CPU emulator ABI.
`CPU_Z80_USE_ABI` | Tells `Z80.h` to declare the prototype of the generic CPU emulator ABI.
`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>`.
<br>