I am porting an interface to the Interrupt Vector Table. The default handler function is aliased by two weakly defined functions written in assembler, so that they may be overridden by the client code.
I cannot determine from the documentation of from the community a way to declare the function aliases as weak symbols.
If I were writing in C, this would be easy enough.
In Kinetis Design Studio a .weak directive would do the trick, but the coldfire assembler doesn't support .weak.
How does one define a symbol in ColdFire V1 assembler (using the CodeWarrior Compilation System) as a weak (aka Overload) symbol?
Thank you for your consideration!