fireworks: make text field a bit wider

This commit is contained in:
Vince Weaver 2018-09-12 14:52:33 -04:00
parent 4314aca189
commit b0bf3f6449
2 changed files with 11 additions and 6 deletions

View File

@ -11,6 +11,8 @@ remove dead code
adjust speed adjust speed
adjust colors of gradient? adjust colors of gradient?
version number in the BASIC booter
BUGS: BUGS:
sometimes far left firework will wrap? sometimes far left firework will wrap?

View File

@ -277,31 +277,32 @@ bpage1_loop:
couter_loop: couter_loop:
bit FULLGR ; 4 bit FULLGR ; 4
bit PAGE0 ; 4 bit PAGE0 ; 4
ldx #6 ; 2 ldx #5 ; 2
cpage0_loop: ; delay 61+bit cpage0_loop:
dex ; 2 dex ; 2
bne cpage0_loop ; 2/3 bne cpage0_loop ; 2/3
;============= ;=============
; 10+(6*5)-1=39 ; 10+(5*5)-1=34
bit TEXTGR ; 4 bit TEXTGR ; 4
bit $1000 ; 4 bit $1000 ; 4
bit $1000 ; 4 bit $1000 ; 4
bit $1000 ; 4 bit $1000 ; 4
bit $1000 ; 4 bit $1000 ; 4
bit $1000 ; 4 bit $1000 ; 4
nop ; 2 bit $1000 ; 4
lda DRAW_PAGE ; 3
; we set PAGE1 (4) as well as dey (2) and bne (3) then nop (55) ; we set PAGE1 (4) as well as dey (2) and bne (3) then nop (55)
; ;
bit FULLGR ; 4 bit FULLGR ; 4
bit PAGE1 ; 4 bit PAGE1 ; 4
ldx #6 ; 2 ldx #5 ; 2
cpage1_loop: cpage1_loop:
dex ; 2 dex ; 2
bne cpage1_loop ; 2/3 bne cpage1_loop ; 2/3
;============= ;=============
; 10+(6*5)-1=39 ; 10+(5*5)-1=34
bit TEXTGR ; 4 bit TEXTGR ; 4
bit $1000 ; 4 bit $1000 ; 4
@ -309,6 +310,8 @@ cpage1_loop:
bit $1000 ; 4 bit $1000 ; 4
lda DRAW_PAGE ; 3 lda DRAW_PAGE ; 3
nop ; 2 nop ; 2
lda DRAW_PAGE ; 3
nop ; 2
dey ; 2 dey ; 2
bne couter_loop ; 2/3 bne couter_loop ; 2/3