What's the best way to do this in C? #pragma ASM LJMP APP_START; //Run app #pragma ENDASM ..or, is that it? APP_START does not exist. This is the launch point of an application loader. The actual app will be done as an entirely different project to be loaded higher in memory at a later time. Thanks.
noted there is a mistake in the C version of the call sugested by Jay There is no mistake. Jay's and your version should do exactly the same thing. In C, you don't have to, although are allowed to, dereference a pointer to a function before calling it using the parentheses operator. - mike