inline assembly language in functions? not really so useful, imho... for situations where it is, intrincs do well enough (imho, of course :)
i.e.
Code:
#define memopen() _disable(); __writecr0(__readcr0() & (~(0x10000)));
#define memclose() __writecr0(__readcr0() ^ 0x10000); _enable();
atm... 60% of code I write is for nt kernel (x64).
-fyyre
Quote:
Originally Posted by unknownone
this is one pice of crap for someone developing low level stuff with c++&asm
all the code should be rewrited in order to compile for x64 :(
|