I really want to just write some values to registers but I am really struggling to get the most simple of ASM projects to build
I am coming from PIC background and for an intial lab I want to be able to just show some students how to load a register and add together..Something like this
AREA text, code, readonly ENTRY MOV R0, #5 ADD R0, R0, #1 END
I found this code online, however the build is failing saying it "Cannot find arguement _Vectors" I see that vectors is defined in Startup.s but I really don't want to use any other additional files. Is there a way to do a simple ASM file like above without any additional files? and debug it
The board being used is the STM32F401RE NUCLEO..
Thanks
Hi Sam
I agree with both of you. Attached a startup.s file of Nucleo F401RE, with some sample lines, e.g. writing/reading registers. You can use this single file to start debug straightforward.
Cheers
Sean