mirror of
https://github.com/pkali/Avery_Breakout.git
synced 2026-05-21 14:49:45 +02:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d732a35326 | |||
| b4093136c5 |
BIN
Binary file not shown.
@@ -641,6 +641,21 @@ bottomBounce
|
|||||||
; so it is enough to switch dy sign
|
; so it is enough to switch dy sign
|
||||||
; sbw #$ffff dy dy ;this does not compile :(
|
; sbw #$ffff dy dy ;this does not compile :(
|
||||||
negw dY
|
negw dY
|
||||||
|
; add racquet velocity (jacking the ball)
|
||||||
|
;check for joystick now
|
||||||
|
lda PORTA
|
||||||
|
and #$04 ;left
|
||||||
|
bne jNotLeft
|
||||||
|
; left
|
||||||
|
sbw dX #100
|
||||||
|
jNotLeft
|
||||||
|
lda PORTA
|
||||||
|
and #$08 ;right
|
||||||
|
bne jNotRight
|
||||||
|
;right
|
||||||
|
adw dX #100
|
||||||
|
jNotRight
|
||||||
|
|
||||||
mva #maxLines+margin-2 ypos+1
|
mva #maxLines+margin-2 ypos+1
|
||||||
bit LevelType
|
bit LevelType
|
||||||
bmi noPingSFX ; no SFX on title screen
|
bmi noPingSFX ; no SFX on title screen
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user