63a64,78
> enum MemoryMode {
> Invalid=0,
> Atomic,
> Timing
> };
>
>
> MemoryMode getMemoryMode() { assert(memoryMode); return memoryMode; }
>
> /** Change the memory mode of the system. This should only be called by the
> * python!!
> * @param mode Mode to change to (atomic/timing)
> */
> void setMemoryMode(MemoryMode mode);
>
110a126,127
> MemoryMode memoryMode;
>