Hi Laci,
My apologies for your unattended question.
The values you are looking for are the reset vector (application's entry point) and the Initial Stack Pointer value. These values are the first and second entries in the vector table (4-bytes each). For KL03 which has a ROM bootloader, the application's vector table does not need an offset so it is placed at the start of flash (address 0). In the parameter "arg" you can simply use 0 if you don't need to pass any data from the bootloader to the application.
To get the actual values you can look at the generated project files (e.g. map file or binary file). Below an example for a KDS project:


This is a manual procedure, but you can try to automate it by reading values at address 0x0 (initial stack pointer) and address 0x4 (initial PC / reset vector) either from the project's binary file or directly from the MCU's memory once the application is loaded.
Regards!
Jorge Gonzalez