| Posted By 
  Mad
 on 2022-01-25
 17:52:06
 
 |  Re: Who Dares Wins II +4M [PAL/NTSC] 
 Luca ok it's your creative process I didn't want to interfere. But if you want to see the badlines gone you may try this extremely simple code (maybe it's buggy or wrong but the badlines seems to be delayed):
 
 ORG $1001, $00
 dc.w $100B,0
 dc.b $9E,"4109",0,0,0	; SYS4109
 jmp MAINPRG
 
 MAINPRG
 sei
 sta $ff3f
 lda $ff13
 and #%11111101
 sta $ff13
 
 .c	lda $ff1c
 and #$01
 bne .c
 .d	lda $ff1d
 cmp #10
 bne .d
 
 ldx #110
 .b	lda $ff1d
 .a	cmp $ff1d
 beq .a
 lda $ff1d
 clc
 adc #$06 ; any number except 1 (and 0)
 and #$07
 ora #$18
 sta $ff06
 dex
 bne .b ; this doesn't look like 100 lines, but I didn't check the reason..
 jmp .c
 
 Anyways, have fun.. I didn't want to disturb your coding fun.. (Curious about the results if there are some somewhen.. Always nice to see new demos/intros..)
 
 (I think the table you got is just reversed, because dex instead of inx in mainloop later.).. Have fun!! And sorry again..
 
 |