Hacker News new | ask | show | jobs
by jcmeyrignac 254 days ago
You 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
1 comments

But what about the effect on cache… oh, wait!

;-)