Inline Assembly
-
hello together, i have a strange problem with the following asm command; __asm call 0h This command should jump to the next instruction and put the value of the position where the last call was made onto the stack! Well, it should, but i only get this message: error C2415: improper operand type Any ideas? Thanks in advance!
-
hello together, i have a strange problem with the following asm command; __asm call 0h This command should jump to the next instruction and put the value of the position where the last call was made onto the stack! Well, it should, but i only get this message: error C2415: improper operand type Any ideas? Thanks in advance!
How about:
__asm
{
call 0h
}
A rich person is not the one who has the most, but the one that needs the least.
-
How about:
__asm
{
call 0h
}
A rich person is not the one who has the most, but the one that needs the least.
-
Indeed. It used to be that you had to do it that way (whether that was with Borland's compiler or Microsoft's compiler, I forget), but I've not done inline assembly in nearly a decade. Are you sure that is a valid statement (for an Intel platform)?
A rich person is not the one who has the most, but the one that needs the least.