What pascal compilers can configure embedded ARM without an OS?

It seems that the available Pascal compilers can only create binaries for ARM on Linux. Is there a compiler / package version for only the bare ARM processor with zero additional software preinstalled?

To clarify, I'm looking for a high-quality compact tool (alternative to commercial C, open source C) for without a kernel, a simple embedded processor with all the software in one ROM? An debugging-enabled IDE is good, but not necessary. In fact, Dubugger may be some other third-party standard IDE. I hope compilers can dump debugging / symbol information in some standard form.

thanks

+8
arm embedded pascal
source share
1 answer

Free Pascal Compiler supports ARM without any OS. They call it TARGET EMBEDDED .

For ARM Linux, take a look at this and this .

There is also the Lazarus CT edition editor , which also stitches the powerless ARM.

UPDATE 1: mikroElektronika also recently made a Pascal compiler for ARM .

UPDATE 2: Ultibo frame for bare metal. Programming Raspberry Pi looks outstanding.

+6
source share

All Articles