When running a live debug session, it's possible to view the disassembly with the C source interlisted. Is it possible to generate this outside of a debug session with compiler/assembly tools?
From the documentation, we're able to use the --optimizer_interlist and/or --c_src_interlist options with the compiler to generate assembly files with the original C source interlisted. We're also able to generate the disassembly from the final, linked binary using the disassembler (dis430.exe) to view the absolute addresses. It seems like there should be a way to combine these two processes to generate one comprehensive file.