ARM Cortex-M Microcontroller startup files
Martin Nowak via Digitalmars-d
digitalmars-d at puremagic.com
Sat May 2 01:35:38 PDT 2015
On Friday, 1 May 2015 at 06:57:08 UTC, Timo Sintonen wrote:
>> * Is dynamic memory allocation a requirement of D, or a
>> library feature?
> We should agree whether we are making only yet another C
> compiler or do we want the D compiler. The ability to use
> object oriented features was the reason I started with D. I
> think we do npot need full gc but I want to create objects at
> least at start. they will live trough the program so I have no
> need to delete then.
You can use malloc+emplace, scoped!Class, or put the instance in
the data segment.
More information about the Digitalmars-d
mailing list