If i wanted to run assembly code inline could i do it in C++? Also if i dont or can't run assembly code inline what is the most common way to link a routine?
Printable View
If i wanted to run assembly code inline could i do it in C++? Also if i dont or can't run assembly code inline what is the most common way to link a routine?
Code:asm{
mov ax, 3h
}
Looking at that block, it looks like it would go inline with C++.
What is the 3h? Is that an interrupt? Thanks. :)
Oh yeah. I wasn't thinking. :rolleyes: 3h is a hex number.
Thanks for the help.