The asmc_dumpall debug function previously used a hardcoded loop limit of 0x100 (256) keys with a "XXX magic number" comment.
This change improves asmc_dumpall to:
- Read the actual number of keys from the ASMC_NKEYS SMC key
- Print the key count being dumped for better debugging output
- Loop only up to the actual key count (e.g., 297 on Mac Mini 5,1)
This provides more accurate debug output and removes the magic number.