While debugging an issue with IAR workbench, I could see the current PC points in the assembly code. I need to edit the same code but I'm not able to locate the file location. This is a start-up file whihc IAR automatically includes. There are many variants of the same file name in the IAR workbench folder. So, I'd like to how to get the file name and its path of the code appears in dis-assembly window?
IAR Workbench - How to get the file name and its path of the code appears in dis-assembly window?
1.3k Views Asked by user3214692 At
1
There are 1 best solutions below
Related Questions in DISASSEMBLY
- Library name and function name obfuscation
- Visual Studio 2013 Disassembly Reference
- Differences between call, push+ret and push+jump in assembly
- Attempt to raise Null exception in disassembled code in Visual Studio
- IDA Python - Identify Pushes for a Function Call
- Is value of ebp register always multiple of 8?
- Causes and benefits of this improvement on gcc version >= 4.9.0 vs gcc version < 4.9?
- Can radare2 print local variables by name?
- REPE CMPSB problems
- Understanding JMP Codes in Assembly
- What does this bsr.l instruction do?
- SCSI Packets from USB
- C++ read from class by its pointer and offset
- disassemble code from c#
- IAR Workbench - How to get the file name and its path of the code appears in dis-assembly window?
Related Questions in IAR
- What is the IAR equiavlent of the gcc linker NOLOAD directive?
- getting Error[Pe020]: identifier "" is undefined in IAR with an typedef enum
- How to add entire path into IAR
- Creating a loop within an assembly macro - IAR ARM
- Communication with SD Card with STM32 Processor - SDIO protocol
- How can I configure Ceedling for an IAR Embedded Workbench project?
- Generate IAR code coverage when running C-Spy outside of the IDE
- IAR Pre-Build batch file python call not working
- Fail in loading flash loader on IAR Workbench
- How can I stop my IAR ide from hanging when changing build configurations
- Getting Fatal Error[Li001] in IAR Embedded Work Bench
- If statement in C not evaluating properly?
- IAR Workbench - How to get the file name and its path of the code appears in dis-assembly window?
- How to play a tone on the MSP430 using Assembly language
- Value <unavailable> in IAR
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I did not find any easy way to find the file name of the symbols shown in the IAR dis-assembly window. But this could be done in the following (straight forward) way:
.mapfile typically stored underListdirectory where IAR project is stored.ofile.cor.s)in the IAR project..afile). In this case, you can find out the library (.a) file name in the same.mapfile. Then you need to dig out how the library is built? and where the sources are?