Right at the top of this file there's a vtable in C:
The syntax might seem a little crazy, but it's just an array of function pointers that take void and return void, with an attribute to slap them in the correct section. Also notice the cast of the stack top address to a function pointer to rid myself of compiler warnings.
I honestly prefer the assembly vector table. Reserving words just looks a little nicer, but it all does the same thing.
can someone share a sample vector table in C.
Thanks in advance!