README.md

This commit is contained in:
redcode
2018-01-28 18:37:34 +01:00
parent 148dd4c71c
commit 87a2f044d7

View File

@@ -116,7 +116,7 @@ void z80_int(Z80 *object, zboolean state);
## Callbacks
Before using an instance of the Z80 emulator, its callback pointers must be initialized with the pointers to the functions that your program must provide in order to make possible for the CPU to access the emulated machine's resources. All the callbacks are mandatory except `halt`, which is optional and should be initialized to `NULL` if not used.
Before using an instance of the Z80 emulator, its callback pointers must be initialized with the pointers to the functions that your program must provide in order to make possible for the CPU to access the emulated machine's resources. All callbacks are mandatory except `halt`, which is optional and must be set to `NULL` if not used.
#### `read`