[1.14-fabirc] Actively written-to RAM module keeps modifying ROM module
Sturmlilie opened this issue ยท 1 comments
Environment: Dedicated server, creative mode
How to reproduce: Put an execution and RAM module side-by-side and load the following test program:
# RAMTEST
#DEFINE RAM ANY
MOV 0, ACC
SAV
LOOP:
SWP
MOV ACC, RAM
MOV ACC, RAM
ADD 1
SAV
SUB 0XFF
JNZ LOOP
END: JMP END
It will start filling up the RAM module. Then take a ROM module, and use shift-click to copy the current contents of the RAM. While the RAM continues being written to, the held ROM module will cause hand-motion, and the memory view suggests that the new values arriving in RAM are also being written to the ROM module.
Couldn't reproduce this in survival because the shift-click doesn't work there (only opens memory view).