Browse Source

Rename z80_instructions.inc.c to z80_ops.inc.c

master
Ben Kurtovic 9 years ago
parent
commit
0a61a4c8b0
2 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/z80.c
  2. +0
    -0
      src/z80_ops.inc.c

+ 1
- 1
src/z80.c View File

@@ -148,7 +148,7 @@ static inline void increment_refresh_counter(Z80 *z80)
z80->regfile.r = (z80->regfile.r & 0x80) | ((z80->regfile.r + 1) & 0x7F);
}

#include "z80_instructions.inc.c"
#include "z80_ops.inc.c"

/*
Emulate the given number of cycles of the Z80, or until an exception.


src/z80_instructions.inc.c → src/z80_ops.inc.c View File


Loading…
Cancel
Save