Hi everyone,
I have a checkers playing program made with PBCC 2.1,
I have also 2.7GB of End_Game_Table_Bases that I would like to
load into memory for the fastest random access possible.
I red somewehere that for an executable to use up to 3GB of RAM
you need:
in the boot.ini:
[boot loader]
timeout=30
default=multi(0)disk(0)rdisk(0)partition(2)\WINNT
[operating systems]
multi(0)disk(0)rdisk(0)partition(2)\WINNT="Windows XP Professional" /3GB
you need also to mark the executable to be 3GB space aware by
making the IMAGE_FILE_LARGE_ADDRESS_AWARE bit set in it's
image header.
How can I set this bit in my PBCC21 .exe files?
Thanks in advance,
Alvaro Cardoso
------------------
I have a checkers playing program made with PBCC 2.1,
I have also 2.7GB of End_Game_Table_Bases that I would like to
load into memory for the fastest random access possible.
I red somewehere that for an executable to use up to 3GB of RAM
you need:
in the boot.ini:
[boot loader]
timeout=30
default=multi(0)disk(0)rdisk(0)partition(2)\WINNT
[operating systems]
multi(0)disk(0)rdisk(0)partition(2)\WINNT="Windows XP Professional" /3GB
you need also to mark the executable to be 3GB space aware by
making the IMAGE_FILE_LARGE_ADDRESS_AWARE bit set in it's
image header.
How can I set this bit in my PBCC21 .exe files?
Thanks in advance,
Alvaro Cardoso
------------------
Comment