Following program freezes when the output file is around 3.5GB. Does PUT not work with big files? FBC 1.07.1, Win10, 64GB RAM.
Thanks
Code: Select all
screenres 512,384,32
static shared as ubyte array() '8GB
redim array(8000000000)
open "test8gb.txt" for binary access write as #1
put #1,,array()
close #1
beep
sleep