1
0
mirror of https://github.com/tilleul/apple2.git synced 2025-08-15 15:27:32 +00:00

Update README.md

This commit is contained in:
tilleul
2022-07-17 22:02:02 +02:00
committed by GitHub
parent 81c465c49a
commit a191b6aad0

View File

@@ -68,7 +68,7 @@ All our snippets will have the same final effect, otherwise we would not be comp
It is also important that we did not use ``A=A*B``: even though it's a variable assignment, we would be reusing ``A`` and it has an impact on speed. If we want to reuse ``A`` then we need to do it in both snippets.
The actual difference of **723 cycles** does not really matter. What is important is that the second snippet **actually runs** faster. Actual speed depends on several other factors which will be explained in this article. &
The actual difference of **723 cycles** does not really matter. What is important is that the second snippet **actually runs** faster. Actual speed depends on several other factors which will be explained in this article.
### 🍎 Keep in mind the following