user410600
user410600

Reputation: 127

compiling assembly with Visual C++ Express 2010 64 Bit

How do I compile assembly code in a separate file?

If my function is of the type "void __fastcall foo(unsigned long long, unsigned long long, unsigned long long, unsigned long long&, unsigned long long&)", how do I implement this in my .asm file?

Upvotes: 4

Views: 388

Answers (1)

Jason
Jason

Reputation: 2371

.code

foo PROC
            ; do stuff here
foo ENDP

end

Upvotes: 0

Related Questions