Comment on Make the most of compiled C loops on the 68000Comments−jcmeyrignac11moYou can optimize further by unrolling the loop. For example: .L2: move.w d1,(a0) move.w d1,(a0) move.w d1,(a0) move.w d1,(a0) dbra d0,.L2 rts−allenrb11moBut what about the effect on cache… oh, wait!;-)
Comments
You can optimize further by unrolling the loop. For example:
But what about the effect on cache… oh, wait!
;-)