This commit is contained in:
redcode
2016-04-25 15:51:20 +02:00
parent 4e833561be
commit 39bd6aa93e
2 changed files with 4 additions and 4 deletions

View File

@@ -19,7 +19,7 @@
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
6428A5691AAFC68700634F5D /* libZ80 (dynamic).dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = "libZ80 (dynamic).dylib"; sourceTree = BUILT_PRODUCTS_DIR; };
6428A5691AAFC68700634F5D /* libZ80.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libZ80.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
6428A5741AAFC6DF00634F5D /* Z80.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Z80.h; sourceTree = "<group>"; };
6428A5761AAFC72900634F5D /* Z80.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Z80.c; sourceTree = "<group>"; };
6428A57C1AAFEDED00634F5D /* libZ80.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libZ80.a; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -87,7 +87,7 @@
6428A56A1AAFC68700634F5D /* Products */ = {
isa = PBXGroup;
children = (
6428A5691AAFC68700634F5D /* libZ80 (dynamic).dylib */,
6428A5691AAFC68700634F5D /* libZ80.dylib */,
6428A57C1AAFEDED00634F5D /* libZ80.a */,
648C13B61CCDFA8D00C8DCE1 /* Z80.CPU */,
648C13C91CCDFBEF00C8DCE1 /* libZ80.a */,
@@ -180,7 +180,7 @@
);
name = "Z80 (dynamic)";
productName = Z80;
productReference = 6428A5691AAFC68700634F5D /* libZ80 (dynamic).dylib */;
productReference = 6428A5691AAFC68700634F5D /* libZ80.dylib */;
productType = "com.apple.product-type.library.dynamic";
};
6428A57B1AAFEDED00634F5D /* Z80 (static) */ = {

View File

@@ -1597,7 +1597,7 @@ CPU_Z80_API void z80_irq(Z80 *object, zboolean state) {INT = state;}
/* MARK: - ABI */
#if defined(CPU_Z80_BUILD_ABI) || defined(CPU_Z80_BUILD_MODULE_ABI)
#if defined(CPU_Z80_BUILD_ABI) || defined(CPU_Z80_BUILD_MODULE_ABI)
static void will_read_state(Z80 *object) {R = R_ALL;}
static void did_write_state(Z80 *object) {R7 = R; }