13
votes
9answers
818 views
Why didn’t Ada make it?
I've read about a really beautiful langauge called "Ada", which seems very powerful to me, with a lot of what we call these days "safety features".
What was wrong with Ada not to …
10
votes
7answers
617 views
Where is Ada used (apart from safety-critical software)?
When one thinks of Ada, one usually thinks of avionics.
What I'm interested in are some other applications of Ada? Where is it used? Are there any shipped applications written in …
3
votes
3answers
190 views
I have an embedded project idea that i want to start. I have many questions.
This is my first post on stackoverflow, I've heard of this website and I think its awesome! Let's see if i can get some guidance on how to start my project.
The Idea:
Basically I …
3
votes
7answers
238 views
Recommendations on good Ada books
I'm looking for a good book on Ada. Wikipedia has a list but I have no idea where to start, what level they're aimed at, etc. I started coding ~6 years ago in college and I'm quite …
3
votes
4answers
141 views
Are there any good Unit Test frameworks for Ada?
I come from a C++ background, but I'm currently working in Ada. In the C++ world, I unit test every class as I write it... this doesn't seem to be the vogue for our codebase here a …
3
votes
3answers
307 views
Is there a free implementation of Ada?
I looked at the AdaCore site, as well as for A# (which now appears to be owned by AdaCore) and neither appear to be free (although I could have misread something). Any recommendati …
2
votes
2answers
80 views
Arbitrary length integer in Ada
Hello!
I am currently teaching myself Ada and though I could begin by tackling some of the more conventional problems to get started.
More specifically I try to calculate the fac …
2
votes
2answers
277 views
Java / Ada Big Endian to Linux Little Endian problems.
I am an intern who has inherited a problem with a testing program at the place where I am working. After searching around on a little bit I can across a person with my exact same p …
2
votes
2answers
131 views
Ada and assembly
I'm looking at making a hardware debug tool that runs on the bare CPU (x86), 32-bit protected mode and no OS. Due to time constraints, I won't be writing the tool all in x86 assem …
2
votes
7answers
434 views
Can you call C++ functions from Ada?
Can you call C++ functions from Ada?
I'm wondering if there is a way to do this directly, without doing the implementation in C and writing a C++ wrapper & and Ada wrapper, e …
2
votes
4answers
297 views
Understanding how Ada serializes a record
I would like to be able to predict what will be in the resulting binary when I call Write in Ada to serialize a record. Do you know where I can look this up?
I have some legacy Ad …
1
vote
1answer
49 views
Pass a Boolean Ada type in Interfaces.C
I would like to now how to pass a standard Boolean Type in Ada through the Interfaces.C package in order to call a DLL function.
The Interfaces.C package does not contain the Ada B …
1
vote
3answers
44 views
Returning a variable-sized matrix from a function in Ada
I'm trying to learn Ada for a course at the University, and I'm having a lot of problems wrapping my head around some of the ideas in it.
My current stumbling block: Let's say I h …
1
vote
5answers
145 views
Why doesn’t Ada have a garbage collector?
I know GC wasn't popular in the days when Ada was developed and for the main use case of embedded programming it is still not a good choice.
But considering that Ada is a general …
1
vote
3answers
48 views
Regular Expressions in Ada?
I'm very new to Ada, and I'm trying to do some simple work with some text. All I want to do is read in a file, and strip out anything that isn't a letter, space, or new line. so …
