You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/VersionHistory.rst
+22-20Lines changed: 22 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -47,26 +47,28 @@ This is an important update that addresses a number of issues and also includes
47
47
34. Added optional emulation of Q. If enabled at compile-time, the ``ccf`` and ``scf`` instructions will produce a correct value of F.
48
48
35. Added emulation of the ``out (c),255`` instruction (Zilog Z80 CMOS).
49
49
36. Added optional emulation of the bug affecting the ``ld a,{i|r}`` instructions (Zilog Z80 NMOS). If enabled at compile-time and configured at runtime, the P/V flag will be reset if an INT is accepted during the execution of these instructions.
50
-
37. Increased granularity. The emulator can now stop directly after fetching a prefix ``DDh`` or ``FDh`` if it runs out of clock cycles. This also works during the INT response in mode 0.
51
-
38. Reimplemented the HALT state. The emulation should now be fully accurate. HALTskip optimization is also supported.
52
-
39. Fixed a bug in the ``sll`` instruction.
53
-
40. Fixed a bug in the ``INX`` and ``OUTX`` macros affecting the S and N flags.
54
-
41. Fixed a bug in the ``OUTX`` macro affecting the MSByte of the port number.
55
-
42. Fixed the clock cycles of the ``dec XY`` and ``in (c)`` instructions.
56
-
43. Fixed the ``read_16`` function so that the order of the memory read operations is not determined by the order in which the compiler evaluates expressions.
57
-
44. Fixed the order in which the memory write operations are performed when the SP register is involved. This affects the NMI response, the INT response in modes 1 and 2, and the following instructions: ``ex (sp),{hl|XY}``, ``push TT``, ``push XY``, ``call WORD``, ``call Z,WORD`` and ``rst N``.
58
-
45. Fixed the handling of illegal instructions to avoid stack overflows in long sequences of ``DDh/FDh`` prefixes.
59
-
46. Fixed several implicit conversions to avoid warnings about loss of sign and precision.
60
-
47. Fixed some bitwise operations to avoid undefined behavior and arithmetic right shifts on signed integers.
61
-
48. Fixed violations of the C standard in several identifiers.
62
-
49. Renamed the 8-bit register lists: ``X/Y`` to ``J/K``; ``J/K`` and ``P/Q`` to ``O/P``.
63
-
50. Replaced all P/V overflow computation functions with a single, faster macro.
64
-
51. Replaced all register resolution functions with macros.
65
-
52. Replaced all ``ld {J,K|O,P}`` instructions that have the same destination and source register with NOPs. In addition, the "illegal" forms of the following instructions are now executed without using the illegal instruction handler: ``ld O,P``, ``ld O,BYTE``, ``U [a,]P`` and ``V O``.
66
-
53. Optimizations in flag computation and condition evaluation.
67
-
54. New source code comments and improvements to existing ones.
68
-
55. Improved code aesthetics.
69
-
56. Other improvements, optimizations and minor changes.
50
+
37. Added an optional implementation of the parity calculation for the P/V flag that performs the actual computation instead of using a table of precomputed values.
51
+
38. Added an optional implementation of the ``daa`` instruction that uses a table of precomputed values.
52
+
39. Increased granularity. The emulator can now stop directly after fetching a prefix ``DDh`` or ``FDh`` if it runs out of clock cycles. This also works during the INT response in mode 0.
53
+
40. Reimplemented the HALT state. The emulation should now be fully accurate. HALTskip optimization is also supported.
54
+
41. Fixed a bug in the ``sll`` instruction.
55
+
42. Fixed a bug in the ``INX`` and ``OUTX`` macros affecting the S and N flags.
56
+
43. Fixed a bug in the ``OUTX`` macro affecting the MSByte of the port number.
57
+
44. Fixed the clock cycles of the ``dec XY`` and ``in (c)`` instructions.
58
+
45. Fixed the ``read_16`` function so that the order of the memory read operations is not determined by the order in which the compiler evaluates expressions.
59
+
46. Fixed the order in which the memory write operations are performed when the SP register is involved. This affects the NMI response, the INT response in modes 1 and 2, and the following instructions: ``ex (sp),{hl|XY}``, ``push TT``, ``push XY``, ``call WORD``, ``call Z,WORD`` and ``rst N``.
60
+
47. Fixed the handling of illegal instructions to avoid stack overflows in long sequences of ``DDh/FDh`` prefixes.
61
+
48. Fixed several implicit conversions to avoid warnings about loss of sign and precision.
62
+
49. Fixed some bitwise operations to avoid undefined behavior and arithmetic right shifts on signed integers.
63
+
50. Fixed violations of the C standard in several identifiers.
64
+
51. Renamed the 8-bit register lists: ``X/Y`` to ``J/K``; ``J/K`` and ``P/Q`` to ``O/P``.
65
+
52. Replaced all P/V overflow computation functions with a single, faster macro.
66
+
53. Replaced all register resolution functions with macros.
67
+
54. Replaced all ``ld {J,K|O,P}`` instructions that have the same destination and source register with NOPs. In addition, the "illegal" forms of the following instructions are now executed without using the illegal instruction handler: ``ld O,P``, ``ld O,BYTE``, ``U [a,]P`` and ``V O``.
68
+
55. Optimizations in flag computation and condition evaluation.
69
+
56. New source code comments and improvements to existing ones.
70
+
57. Improved code aesthetics.
71
+
58. Other improvements, optimizations and minor changes.
0 commit comments