It is not possible to create a VM with a memory size of 8 GB or greater. This is because of an overly restrictive size check in Set_Memory_Size in VM.cpp. The following diff fixes the problem for me:
diff --git a/VM.cpp b/VM.cpp
index 04c6173..66525ed 100644
--- a/VM.cpp
+++ b/VM.cpp
@@ -7578,7 +7578,7 @@ int Virtual_Machine::Get_Memory_Size() const
void Virtual_Machine::Set_Memory_Size( int megs )
{
- if( megs > 0 && megs <= 6144 ) Memory_Size = megs;
+ if( megs > 0 && megs <= 32768 ) Memory_Size = megs;
else
{
AQError( "void Virtual_Machine::Set_Memory_Size( int megs )",
Fixed in latest git master. I removed the limit entirely.
And thanks for reporting by the way.