Closed pawelmat closed 2 years ago
normal/c2p1x1_5_c5_030.s has an error in creating tempbuf for the last bitplane. Here's the fix:
Lines 169-172 should be removed: lsl.l #6,d1 ; Swap/Merge 2x4, part 1 lsl.l #4,d3 or.l d1,d3 move.l d3,a4
And replaced by: lsl.l #2,d1 ; Swap/Merge 2x4, part 1 or.l d1,d3 move.l d3,(a3)+
Line 195 should be removed: add.l a4,d1
Thanks for the heads up. Would you mind making a PR with the change too? I hear it gives Internet karma!
Done, PR#3
Thanks for the fix!
normal/c2p1x1_5_c5_030.s has an error in creating tempbuf for the last bitplane. Here's the fix:
Lines 169-172 should be removed: lsl.l #6,d1 ; Swap/Merge 2x4, part 1 lsl.l #4,d3 or.l d1,d3 move.l d3,a4
And replaced by: lsl.l #2,d1 ; Swap/Merge 2x4, part 1 or.l d1,d3 move.l d3,(a3)+
Line 195 should be removed: add.l a4,d1