I am very interested in ASM I wana learn write it and read it like a pro..
Now i'm in CLASS issue I want to know how c++ Class definition looks in ASM code..

for example this code

class MathFuncs
{

public:
int a,b;
private:
void SetVars(int,int);
}MathObject;

void MathFuncs::SetVars(int A,int B)
{
	a = A;
	b = B;
}

How do I write Class in Assembly how I call class funcs How I write Its vars??

I wana know all about CLASS in assembly..

Please read this FAQ

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.