A bug with the NEW operator was found that will be fixed in Alpha 2 Rev 8.
If you had a typedef such as
#typedef CHAR unsigned byte
And then allocated an array of that type
p = new(CHAR, 500);
The compiler was calculating the wrong size for the aliased type. The size would be random causing phantom crashes.
There will be an update this evening that address the problem