Hello
In CodeWarrior "Embedded 68K Linker" panel, you specify the application entry point.
This entry point is function __start per default, which uses function _start from module E68K_startup as entry point.
If you want to use your own startup function, you can specify your own function name here.
If the function is implemented in an ANSI C source file, make sure to use a _prefix as the compiler internally adds a leading _ to symbol names.
As compiler requires some CPU registers to be initialized a certain way I would recommend you to take the code delivered with CodeWarrior and extend it to your needs.
CrasyCat