This commit is contained in:
redcode
2022-08-26 02:27:49 +02:00
parent 8c650635e1
commit a3766d044d
2 changed files with 2 additions and 2 deletions

2
README
View File

@@ -48,7 +48,7 @@ when accuracy is imperative.
Instruction-level granularity means that, except in a few well-defined cases,
the execution of a given instruction cannot stop until all its internal M-cycles
are completed. In addition, this kind of emulation has been optimized for speed,
which implies that pertinent registers are modified only once per instruction
which implies that any pertinent register is modified only once per instruction
and the T-state counter is updated only after a whole instruction is executed.
That said, instructions, flags, memory accesses, interrupt and reset responses,

View File

@@ -25,7 +25,7 @@ The source code is written in [ANSI C](https://en.wikipedia.org/wiki/ANSI_C) for
The Zilog Z80 emulator has a classic design with instruction-level granularity. This provides the best performance when speed is a critical factor, while still offering a reasonable flexibility to achieve precision down to the T-state level when accuracy is imperative.
Instruction-level granularity means that, except in a few well-defined cases, the execution of a given instruction cannot stop until all its internal M-cycles are completed. In addition, this kind of emulation has been optimized for speed, which implies that pertinent registers are modified only once per instruction and the T-state counter is updated only after a whole instruction is executed.
Instruction-level granularity means that, except in a few well-defined cases, the execution of a given instruction cannot stop until all its internal M-cycles are completed. In addition, this kind of emulation has been optimized for speed, which implies that any pertinent register is modified only once per instruction and the T-state counter is updated only after a whole instruction is executed.
That said, instructions, flags, memory accesses, interrupt and reset responses, clock cycles, etc. are accurately emulated as far as is known, according to the technical documentation available, the findings made after decades of research on the Z80 and electronic simulations. And, of course, the emulator passes the most exhaustive tests written to date: