Architecture of Disassembly View
-
Hi,
I am using Qt to create a bare metal project (stm32 - cortex m4 core). When running the debugger and looking at the view at operation instructions (debugging menu -> operate by instruction) the code seems to not being interpreted as arm cortex M4 code.
The assembly in qt looks like:
where as the "objdump -m iamcu -S --disassemble" call gives
As you can see from the two picutres, the lines below e.g Driver::STM32L496SCB look totally different. From the different views it can be assumed, that the same file is shown, however it seems as if Qt is using the wrong architecture to interpret the assembly file.
Is it possible to change the way QtCreator is interpreting the assembly, so that the correct instructions can be interpreted? If so, where are the settings for these options?
Thanks in advance for your help.