Using DisAsm32 by Russell Libby, disassembling a procedure/function/method is just a matter of passing a (consistent) Pointer to the procedure TDisAsm.Disassemble(Address: Pointer; Size: Cardinal = 0);.
So far, I have managed to disassemble any arbitrary procedure/method, even from a loaded external module (BPL/DLL) provided they are appropriately exported.
From the current process (The EXE image loaded by windows loader), I want to get a valid pointer to the entrypoint.
I want to come up with something akin to IDR (Interactive Delphi Compiler) provides through it’s Code Viewer Tab but from the Exe running instance itself.

How can it be done? I’m not very comfortable with PE structures for the time being (but I am striving to, trust me) and wonder wether they are relevant for the purpose.
My own answer:
I came up with the working solution as follows
Side Note:
SysInit.HInstanceis the same asSystem.MainInstance: My preference goes for it as it sounds more C/C++ and find that more meaningfull for the case.DisAsm32 goes beyond the
call @Halt0instruction when disassembling from the EntryPoint: It is designed to disassemble function/procedure/method and considers aretinstruction as the end.The moral of it:
I will look for other more appealing disassembler such as BeaEngine and will keep the ball rolling.