From 87a2f044d756ef51fa10d99964ef67d55edd718b Mon Sep 17 00:00:00 2001 From: redcode Date: Sun, 28 Jan 2018 18:37:34 +0100 Subject: [PATCH] README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d70518..d7bef0d 100644 --- a/README.md +++ b/README.md @@ -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`