From b355620939a9720da91cb90408439ff90868ab84 Mon Sep 17 00:00:00 2001 From: Stefan Date: Sat, 7 Sep 2024 18:49:53 +0200 Subject: [PATCH] Optimise waitvsync.s --- libsrc/atmos/waitvsync.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/atmos/waitvsync.s b/libsrc/atmos/waitvsync.s index 6113f3da2..15abe1926 100644 --- a/libsrc/atmos/waitvsync.s +++ b/libsrc/atmos/waitvsync.s @@ -10,8 +10,8 @@ .proc _waitvsync -wait: lda VIA::PRA2 - and #%00010000 ; CB1 + lda #%00010000 +wait: and VIA::PRA2 ; CB1 bne wait rts