d2_hgr: inline to save bytes

This commit is contained in:
Vince Weaver 2021-11-11 20:55:03 -05:00
parent a9418f88fa
commit 2d44b76a59
4 changed files with 58 additions and 34 deletions

View File

@ -101,7 +101,7 @@ forever:
;=====================
; orange/green effect
jsr moving
.include "moving.s"
;=====================
; clear screen
@ -113,16 +113,26 @@ forever:
;=====================
; wires effect
jsr wires
.include "wires.s"
; jsr wires
;=====================
; oval effect
jsr oval
; jsr oval
.include "oval.s"
;=====================
; repeat
lda #$7f
sta color_smc+1
lda #159
sta moving_size_smc+1
sta oval_size_smc+1
bit TEXTGR
jmp forever
@ -187,11 +197,28 @@ message2:
hiasc "MUSIC: MA2E "
.include "dsr_shape.s"
.include "moving.s"
.include "wires.s"
.include "oval.s"
;.include "oval.s"
.include "clear_bottom.s"
colorlookup2:
.byte $11,$55,$5d,$7f,$5d,$55,$11,$00
even_lookup:
.byte $D7,$DD,$F5, $D5,$D5,$D5,$D5
odd_lookup:
.byte $AA,$AA,$AA, $AB,$AE,$BA,$EA
colorlookup:
.byte $22,$aa,$ba,$ff,$ba,$aa,$22 ; use 00 from sinetable
sinetable_base:
; this is actually (32*sin(x))
.byte $00,$03,$06,$09,$0C,$0F,$11,$14
.byte $16,$18,$1A,$1C,$1D,$1E,$1F,$1F
.byte $20
sinetable=$8000
; music
.include "mA2E_2.s"
.include "interrupt_handler.s"

View File

@ -15,6 +15,7 @@ moving:
draw_moving:
inc FRAME
moving_size_smc:
lda #191 ; YY
create_yloop:
@ -102,21 +103,21 @@ ror_nop_smc:
cmp #$1b ; NOTE: NEEDS TO BE ODD
bne draw_moving ; bra
rts
; rts
colorlookup:
.byte $22,$aa,$ba,$ff,$ba,$aa,$22 ; use 00 from sinetable
;.byte $00
;colorlookup:
;.byte $22,$aa,$ba,$ff,$ba,$aa,$22 ; use 00 from sinetable
;;.byte $00
;.byte $11,$55,$5d,$7f,$5d,$55,$11 ; use 00 from sinetable
;.byte $00
;;.byte $11,$55,$5d,$7f,$5d,$55,$11 ; use 00 from sinetable
;;.byte $00
sinetable_base:
; this is actually (32*sin(x))
.byte $00,$03,$06,$09,$0C,$0F,$11,$14
.byte $16,$18,$1A,$1C,$1D,$1E,$1F,$1F
.byte $20
;sinetable_base:
;; this is actually (32*sin(x))
;.byte $00,$03,$06,$09,$0C,$0F,$11,$14
;.byte $16,$18,$1A,$1C,$1D,$1E,$1F,$1F
;.byte $20
sinetable=$8000
;sinetable=$8000

View File

@ -43,6 +43,7 @@ oval:
draw_oval:
inc FRAME
oval_size_smc:
lda #191 ; YY
oval_yloop:
@ -89,7 +90,9 @@ oval_row_sum_smc:
oval_ror_nop_smc:
ror ; $6A/$EA ; 2
; and #$7f ; make all purple
color_smc:
and #$ff ; make all purple
sta (GBASL),Y ; 6
lda oval_ror_nop_smc ; toggle ror/nop ; 4
@ -113,10 +116,7 @@ oval_ror_nop_smc:
bne draw_oval ; bra
rts
colorlookup2:
.byte $11,$55,$5d,$7f,$5d,$55,$11,$00
; rts
;colorlookup2:
;.byte $11,$55,$5d,$7f,$5d,$55,$11,$00

View File

@ -82,13 +82,9 @@ noflo:
bne outer_loop
rts
even_lookup:
.byte $D7,$DD,$F5, $D5,$D5,$D5,$D5
odd_lookup:
.byte $AA,$AA,$AA, $AB,$AE,$BA,$EA
; rts
;even_lookup:
;.byte $D7,$DD,$F5, $D5,$D5,$D5,$D5
;odd_lookup:
;.byte $AA,$AA,$AA, $AB,$AE,$BA,$EA