rom_funcs_lookup() function
Helper function to lookup the addresses of multiple bootrom functions This method looks up the 'codes' in the table, and convert each table entry to the looked up function pointer, if there is a function for that code in the bootrom.
Syntax
bool rom_funcs_lookup(uint32_t *table,
unsigned int count);
Arguments
table
an IN/OUT array, elements are codes on input, function pointers on success.
count
the number of elements in the table
Return value
true if all the codes were found, and converted to function pointers, false otherwise