Disassembly Window Types in MPLAB X IDE
Last modified by Microchip on 2024/06/24 06:30
MPLAB® X IDE has two disassembly windows:
- Disassembly Listing File: Window > Debugging > Output > Disassembly Listing File Project
- Disassembly Debugging View: Window > Debugging > Disassembly
Disassembly Listing File
The disassembly listing file is generated by the linker at build time. It lists the entire program (all files and functions) in a single file. Each line of C code is followed by one or more assembly instructions associated with that line of code. This file is available immediately after the project is built.
Debug Disassembly Window
The Debug Disassembly Window is dynamically updated to show the disassembly for the C function that is currently executing in the debugger. Each time you call to or return from a function, this window will change its contents automatically. When this window is open, you can single-step through your code instruction by instruction. Close this window to again step at the C source level.