Given a table of data values, what's the simplest way of detecting a change?
Is there a mass compare where you can compare the table against an archive copy to see if there have been any changes? AB has FAL (File Arithmetic and Logic) instructions that work on a table, splitting the work over many consecutive scans.
Or just compare one value at a time, continuously, but put the comparison in a low-time-slice task, so only a few comparisons get done each overall scan?
I realize Do-More is so fast, you could probably do all the comparisons every scan and it wouldn't hurt anything, but old habits die hard.