From 758355cb7fbe7bec9000b05659b769836fe3200e Mon Sep 17 00:00:00 2001 From: redcode Date: Tue, 30 Oct 2018 18:28:26 +0100 Subject: [PATCH] README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e8b24fc..1b1ec89 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Changes the CPU power status. void z80_power(Z80 *object, zboolean state); ``` **Parameters** -`object` → A pointer to an emulator instance. +`object` → A pointer to a Z80 emulator instance object. `state` → `TRUE` for power ON, `FALSE` otherwise. #### `z80_reset` @@ -64,7 +64,7 @@ void z80_reset(Z80 *object); ``` **Parameters** -`object` → A pointer to an emulator instance. +`object` → A pointer to a Z80 emulator instance object. #### `z80_run` @@ -77,7 +77,7 @@ zusize z80_run(Z80 *object, zusize cycles); ``` **Parameters** -`object` → A pointer to an emulator instance. +`object` → A pointer to a Z80 emulator instance object. `cycles` → The number of cycles to be executed. **Return value** @@ -97,7 +97,7 @@ void z80_nmi(Z80 *object); ``` **Parameters** -`object` → A pointer to an emulator instance. +`object` → A pointer to a Z80 emulator instance object. #### `z80_int` @@ -110,7 +110,7 @@ void z80_int(Z80 *object, zboolean state); ``` **Parameters** -`object` → A pointer to an emulator instance. +`object` → A pointer to a Z80 emulator instance object. `state` → `TRUE` = set line high, `FALSE` = set line low