What problem does it solve? After rebuilding a z88dk library or applying a patch, developers often cannot tell whether a routine actually made it into the .lib or .o file they linked. This Skill provides the z88dk-z80nm commands and a link-proof methodology to confirm symbol presence. ## Core Features & Use Cases - Symbol Listing: Run z88dk-z80nm on .o and .lib files to dump symbols, with flags like -a (all), -l (local symbols), -e (expression patches), and -c (code dump). - Link Verification Methodology: Cross-check nm output against the program map generated by zcc -m to determine whether a symbol is linked, present but unused, or missing entirely. - Use Case: After rebuilding math32_8085.lib, run z88dk-z80nm piped through rg to confirm f32_fsadd exists in the library, then grep the app .map file to prove it was pulled into the binary. ## Quick Start Ask the assistant to verify that a specific symbol is present in a z88dk library file and in the linked program map after a rebuild.