anyone can help me test?compile wince program but the funvtion failure? does not wince support Embedded assembler?
function add(x, y: Integer): Integer;
thanks!
var count: Integer;
begin
asm
MOV EAX, x
MOV ECX, y
ADD EAX, ECX
MOV count, EAX
end;
Result := count;
end;