Minor code space saving tip

cpedw

Senior Member
I just discovered that
Code:
		b8 = b12
		b9 = b13
occupies 2 more bytes of code space than

Code:
		w4 = w6
Not a lot but it made the difference for me working with an 08M. Using PE 6.0.9.3

There was also a saving READ/WRITEing a word compared to 2 bytes.

This may be well known already but it's news to me.

Derek
 
Top