Hey
I'm learning assembly (low level only for now) on my linuxbox.
Could someone convert the following c++ to asm(low level) so i can learn how to do math operations?
#include <iostream>
using namespace std;
int main() {
int a = 10;
int b = 12;
cout<<a+b<<endl;
}
Of course the variables don't have to be the same, and it has to be for linux.
Thanks