Is it Possibly to use asm in Java as you would do in c++ ?
_asm
{
//asm shit
}
?
Originally Posted by whit
Is it Possibly to use asm in Java as you would do in c++ ?
_asm
{
//asm shit
}
?
is _asm reserved name in java?
Originally Posted by Virtual Void
is _asm reserved name in java?
No thats was C++ code i posted & thats what im trying to find out...
I Googled it but there was no straight answers, people trying to be professional
Posts 1–6 of 6 · Page 1 of 1
Post a Reply
Tags for this Thread
None
"Like machine dependent assembly or java byte-code?
If the former, very very unlikely "
"> Is it possible to use "inline assembly" within java code?
No."
Originally Posted by Virtual Void
"> Is it possible to use "inline assembly" within java code?
No."
This is what i wanted know thanks
When programming in Java, you are programming in a high level, machine and OS independent language - you don't manage memory, pointers, or anything like that, let alone assembly.