I am dummy in Assembler.
I need to solve next function y=x^2(a+b+c);
a,b,c – input from console
result x is necessary to write in file.
I don’t asking to solve this for me but maybe someone share with me useful links?
I am dummy in Assembler. I need to solve next function y=x^2(a+b+c); a,b,c –
Share
Try to code something. You might even code a function in C and look at the generated assembler code (e.g. with
gcc -S -fverbose-asmif using GCC on Linux).