Hi, Im playing with Matrix1 utilities 4 commands and I'm a bit new to this stuff.
what I'm trying to do is assign memory in one application and then access it from another exe running simultaneously (curious about using multiple cores to handle different resource heavy tasks)
i've got the following code to attempt this
master
MemoryAddress = ALLOC( 8 )
print str$(MemoryAddress)
wait key
poke integer memoryaddress,1234
number = peek integer(memoryaddress)
print str$(number)
wait key
execute file "echo.exe","",""
wait key
end
echo.exe
input "enter memory address",address
in = peek integer(address)
print in
wait key
so if i enter the memory address into the second program then i should get the data from the address right?
Am I understanding this right?
when I alter stuff from within the one exe it all works ok.
when I use the two exe's then it returns a value of zero.
what am i doing wrong?
thankyou
kezzla
Sometimes I like to use words out of contents