Skip to content

Commit

Permalink
fix: Fix bug causing excessive startup boost
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasvr committed Jan 16, 2021
1 parent 5c38509 commit 98e7de9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Bluejay.asm
Expand Up @@ -781,7 +781,8 @@ t1_int_startup_boost_stall:

djnz Temp6, t1_int_startup_boost_stall ; Add more boost when stalling

jnb ACC.3, ($+7) ; Limit to 11-bit maximum
mov A, Temp5 ; Limit to 11-bit maximum
jnb ACC.3, ($+7)
mov Temp4, #0FFh
mov Temp5, #07h

Expand Down

0 comments on commit 98e7de9

Please sign in to comment.