View Single Post
Old 20 April 2012, 11:21   #29
pmc
gone
 
pmc's Avatar
 
Join Date: Apr 2007
Location: completely gone
Posts: 1,596
little optimisation - maybe obvious, maybe not but here goes...

Instead of:

Code:
                    lea                 vals(pc),An
                    move.w              (An)+,Dn
                    move.w              (An),Dn
                    ext.l               Dn
                    ext.l               Dn
this:

Code:
                    lea                 vals(pc),An
                    movem.w             (An),Dn-Dn
gets you the ext.l's for free
pmc is offline  
 
Page generated in 0.04241 seconds with 10 queries