Welcome, Guest
Username: Password: Remember me
CodeTyphon Cross-Build Development, discussions and problems
  • Page:
  • 1

TOPIC:

Does not wince support Embedded assembler?compile 9 years 1 month ago #6860

  • dorry
  • dorry's Avatar Topic Author
  • Offline
  • New Member
  • New Member
  • Posts: 19
  • Thank you received: 1
Anyone can help me test?compile wince program but the function 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;

Please Log in or Create an account to join the conversation.

Does not wince support Embedded assembler?compile 9 years 1 month ago #6861

  • Tony_O_Gallos
  • Tony_O_Gallos's Avatar
  • Offline
  • Junior Member
  • Junior Member
  • Ελεύθερο λογισμικό ή θάνατος
  • Posts: 84
  • Thank you received: 23
Hi,
you are using i386 instruction set, mostly WinCE support is done for ARM architecture.
Did you check your destination CPU ?

Please Log in or Create an account to join the conversation.

  • Page:
  • 1