Page 1 of 1

Is it safe to write outside of the screen area?

PostPosted: Jul 1, 2002 @ 10:09pm
by britcode

PostPosted: Jul 1, 2002 @ 10:30pm
by Kzinti

PostPosted: Jul 1, 2002 @ 11:54pm
by Johan

PostPosted: Jul 2, 2002 @ 1:55am
by britcode

PostPosted: Jul 2, 2002 @ 2:00am
by Johan

PostPosted: Jul 2, 2002 @ 2:08am
by Digby

PostPosted: Jul 2, 2002 @ 2:08am
by Kzinti

PostPosted: Jul 2, 2002 @ 2:23am
by britcode
>In modern compilers, memcpy() is usually an intrinsic function. This means that it is automatically inlined to the most efficient sequence of instructions.

I know and I had become so used to Vis C inlining with rep movsd instructions that I was shocked to look at the assembler output and find... yep you guessed it, and mere bl memcpy!!

Sad but true. Is there a _memcpy or something which eVC can inline?