Maharshi
Newbie level 3
- Joined
- Apr 26, 2012
- Messages
- 4
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,328
I want to perform
my code is
I want to convert above slow code to fast code.
What should I do?
a=b+c
d=e-f
my code is
Code:
LW Rb,b
LW Rc,c
ADD Ra,Rb,Rc
SW a,Ra
LW Re,e
LW Rf,f
SUB Rd,Re,Rf
SW d,Rd
I want to convert above slow code to fast code.
What should I do?