From dcb43350913e82f5d86741a63fa2d03248385f4c Mon Sep 17 00:00:00 2001 From: alpine9000 Date: Sat, 5 Mar 2016 20:22:24 +1100 Subject: [PATCH] Update README.md --- 010.blit_speed/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/010.blit_speed/README.md b/010.blit_speed/README.md index c6253ca..eca8743 100644 --- a/010.blit_speed/README.md +++ b/010.blit_speed/README.md @@ -17,14 +17,14 @@ Then in the main loop I now: ``` .mainLoop: - bsr waitVerticalBlank - bsr installGreyscalePalette - move.l #4,d0 ; blit the object 4 times each frame + bsr waitVerticalBlank + bsr installGreyscalePalette + move.l #4,d0 ; blit the object 4 times each frame .blitLoop: - bsr moveBlitterObject - dbra d0,.blitLoop - bsr.s installColorPalette - bra.s .mainLoop + bsr moveBlitterObject + dbra d0,.blitLoop + bsr.s installColorPalette + bra.s .mainLoop ``` So when the screen changes to color, that's how many scan lines we have used blitting stuff.