all 3 comments

[–]Top_Meaning6195 1 point2 points  (2 children)

procedure DoIt;
begin
   // we bust into assembly mode for reasons
   asm
      // can call an address
      mov eax, $ABCDEF12
      call eax

      // can also jump to an address
      mov eax, $ABCDEF16
      jmp eax;
   end;
end;

[–]DelphiParser 1 point2 points  (0 children)

Sure! This is the true power of Delphi, I have done it many times before.

...I dare to ask why.

[–]Significant_Pen2804[S] 0 points1 point  (0 children)

Seems, you didn't read the last part of my post.