RE: [NtDev] assembly level coding in VC 6.

Visual C is just that — a C compiler with a few other tools. If you want
to do assembly language development, you need ML/MASM. Since ML is part of
the DDK, yes you can use assembly.

Gary G. Little
Staff Engineer
Broadband Storage, Inc.
xxxxx@Broadstor.com
xxxxx@inland.net

-----Original Message-----
From: Girish Desai [mailto:xxxxx@operamail.com]
Sent: Monday, June 04, 2001 12:40 PM
To: NT Developers Interest List
Subject: [ntdev] assembly level coding in VC 6.

Hello,

Can I do assembly level coding in VC 6.x(NOT using ASM block)? Or Do I need
to
have MASM for that?

Thanks,
Gr


This e-mail has been sent to you courtesy of OperaMail, as a free
service from
Opera Software, makers of the award-winning Web Browser, Opera. Visit us
at
http://www.opera.com/ or our portal at: http://www.myopera.com/ Your free
e-mail
account is waiting at: http://www.operamail.com/


You are currently subscribed to ntdev as: xxxxx@broadstor.com
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

A couple of years ago I had a project where one of the source files was
Assembly. VC++ understood to invoke the Assembler.


James Antognini
IBM Watson Research


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

BUILD understands assembler files and will call ML as necessary. I think there
might be some options that you may need to set in your SOURCES file though.

In VC, you can add an .ASM file to your project, and you can define the necessary
“custom build settings” to invoke ML to correctly assemble the file.

Regards,

Paul Bunn, UltraBac.com, 425-644-6000
Microsoft MVP - WindowsNT/2000
http://www.ultrabac.com

-----Original Message-----
From: James Antognini [mailto:antognini@us.ibm.com]
Sent: Monday, June 04, 2001 3:37 PM
To: NT Developers Interest List
Subject: [ntdev] Re: assembly level coding in VC 6.

A couple of years ago I had a project where one of the source files was
Assembly. VC++ understood to invoke the Assembler.


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

void main ( )
{
char str1 [100] = “test” ;
char str2 [10] = “zzz” ;

strcat ( str1, str2 );
}

Just debug this programm. Trace into strcat function. This function is
written in ASM.

Hope u will get idea.

Regards,
Satish K.S

----- Original Message -----
From: “Girish Desai”
To: “NT Developers Interest List”
Sent: Tuesday, June 05, 2001 1:10 AM
Subject: [ntdev] assembly level coding in VC 6.

> Hello,
>
> Can I do assembly level coding in VC 6.x(NOT using ASM block)? Or Do I
need to
> have MASM for that?
>
> Thanks,
> Gr
>
> ------------------------------------------------------------
> This e-mail has been sent to you courtesy of OperaMail, as a free
service from
> Opera Software, makers of the award-winning Web Browser, Opera. Visit
us at
> http://www.opera.com/ or our portal at: http://www.myopera.com/ Your free
e-mail
> account is waiting at: http://www.operamail.com/
> ------------------------------------------------------------
>
>
> —
> You are currently subscribed to ntdev as: xxxxx@aalayance.com
> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

Hi,
From my experience I needed to downlowd latest processor pack and that
installed the masm. In addition I had to tweak some project settings to make
it work.
Regards,
Stas.
----- Original Message -----
From: “Girish Desai”
To: “NT Developers Interest List”
Sent: Monday, June 04, 2001 9:40 PM
Subject: [ntdev] assembly level coding in VC 6.

> Hello,
>
> Can I do assembly level coding in VC 6.x(NOT using ASM block)? Or Do I
need to
> have MASM for that?
>
> Thanks,
> Gr
>
> ------------------------------------------------------------
> This e-mail has been sent to you courtesy of OperaMail, as a free
service from
> Opera Software, makers of the award-winning Web Browser, Opera. Visit
us at
> http://www.opera.com/ or our portal at: http://www.myopera.com/ Your free
e-mail
> account is waiting at: http://www.operamail.com/
> ------------------------------------------------------------
>
>
> —
> You are currently subscribed to ntdev as: xxxxx@actcom.co.il
> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com
>


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com