good_evening
good_evening

Reputation: 21749

Free ARM IDE | Compiler

I am looking for ARM IDE, so I could run code like this:

    LDR     R0, a
    a    DEFW    0

And it would give me results or show how is everything processed. Thank you.

Upvotes: 0

Views: 1409

Answers (1)

Andrejs Cainikovs
Andrejs Cainikovs

Reputation: 28434

If you want to go with ARM assembly using free tools there is only one true solution:

  • vim (or other suitable editor that matches your needs)
  • gcc
  • gdb + Qemu (or better gdb + ICE + board)

Or (this will cost you a fortune):

  • ARM Developer Suite
  • JTAG

Upvotes: 1

Related Questions