diff options
author | Juan J. MartÃnez <jjm@usebox.net> | 2019-03-20 08:09:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-20 08:09:36 +0000 |
commit | 9f2aaef291e60b83d153d3a9abd4ce22ff59c997 (patch) | |
tree | 2a043d0a5bcc0832a6507ba4ce0c015819ae83f8 /README.md | |
parent | 46d367e5f71ccc0a1c3097b6bafcf71180930d11 (diff) | |
download | z80count-9f2aaef291e60b83d153d3a9abd4ce22ff59c997.tar.gz z80count-9f2aaef291e60b83d153d3a9abd4ce22ff59c997.zip |
Fix the explanation
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -123,14 +123,14 @@ Processed with `z80count.py -s` results in: Comments show subtotals, and there are two types: - `[A .. T0]` - - `[B/A .. T0/T1]` + - `[B/A .. T1/T0]` Where A, B, T0 and T1 are: - A is the number of cycles of current instruction. In case of a conditional instruction, this is the value when the condition is not met. - B is the number of cycles of current instruction when the condition is met. - - T0 is the subtotal when the conditional is met. - - T1 is the subtotal when the conditional is not met. + - T0 is the subtotal when the conditional is not met. + - T1 is the subtotal when the conditional is met. ## Troubleshooting |