diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-04-28 21:49:39 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-04-28 21:49:39 +0100 |
commit | 4cd812baa205a70e7dabec57b5be81f5353e6027 (patch) | |
tree | 046f219c14b5cc10b12ba5633eae896f376f43a6 | |
parent | 6b970e749e720404d08cec565fe0157d20fdeaef (diff) |
Fixed missing return from function.
-rwxr-xr-x | src/65c816.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/65c816.c b/src/65c816.c index 6305dd0..2aaf15d 100755 --- a/src/65c816.c +++ b/src/65c816.c @@ -588,7 +588,7 @@ do { \ case DIRECT_PAGE: \ PCWrite(base + 0x05); \ PCWrite(address); \ - break; \ + return CMD_OK; \ \ case DIRECT_PAGE_INDIRECT_LONG: \ PCWrite(base + 0x07); \ |