このコードは、LPC 上の IAP の一部です。
#define IAP_LOCATION 0x7ffffff1
...
unsigned long command[5];
unsigned long result[3];
...
typedef void (*IAP)(unsigned int [],unsigned int[]);
IAP iap_entry;
iap_entry = (IAP) IAP_LOCATION;
iap_entry(command, result);
誰かがそれがどのように機能するかを説明できますか、特に:
iap_entry = (IAP) IAP_LOCATION;
iap_entry(command, result)