Solved
ARMv4 instruction "ADC R0, R1, LSL #1" not recognized
I am using STM32CubeIDE 1.15.0, writing code in C, including some assembler code, for the STM32G431.
According to ST's programming manual PM0214 in Section 3.5.1, I should be allowed to use
adc r0, r1, lsl #1However, gcc barfs (I am using standard gnu18) with the following message:
garbage following instruction -- 'adc r0,r1,lsl#1'
What am I missing?
