Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Visual C++ 6 and Assembly Language 2

Status
Not open for further replies.

EvilCensor

Programmer
Oct 12, 2001
5
GB
Can I use assembly language directly in MS Visual C++ 6 - like with Borland C++?

If so which header file do I need to include?

Appreciate any help!
 
you don't use a special header file, just use
_asm{
...
}

or is it

asm{
...
}

well it's one of those two.:-I
 
Also, for single command

_asm int 3

Very usefull for debugging release or debug that doesn't want to stop on breakpoint...
 
Thanks for that too - certainly a very useful feature :eek:)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top