So say I have a variable, which holds a song number. -> song_no
Depending upon the value of this variable, I wish to call a function.
Say I have many different functions:
Fcn1 .... Fcn2 .... Fcn3
So for example, If song_no = 1, call Fcn1 If song_no = 2, call Fcn2 and so forth...
How would I do this?
I'm not well acquainted with the pic, but these sort of things are usually implemented as a jump table. In short, put pointers to the target routines in an array and call/jump to the entry indexed by your
song_no
. You just need to calculate the address into the array somehow, so it is very efficient. No compares necessary.