public ScopeStrobeMemory(ScopeFpgaSettingsMemory writeMemory, ScopeFpgaRom readMemory)
        {
            this.writeMemory = writeMemory;
            this.readMemory = readMemory;

            foreach (STR str in Enum.GetValues(typeof(STR)))
                registers.Add((uint)str, new BoolRegister(this, (uint)str, str.ToString()));
        }
Example #2
0
        internal MAX19506Memory(ScopeFpgaSettingsMemory fpgaMemory, ScopeStrobeMemory strobeMemory, ScopeFpgaRom fpgaRom)
        {
            this.fpgaSettings = fpgaMemory;
            this.strobeMemory = strobeMemory;
            this.fpgaRom = fpgaRom;

            foreach (MAX19506 reg in Enum.GetValues(typeof(MAX19506)))
                registers.Add((uint)reg, new ByteRegister(this, (uint)reg, reg.ToString()));
        }
Example #3
0
        public ScopeStrobeMemory(ScopeFpgaSettingsMemory writeMemory, ScopeFpgaRom readMemory)
        {
            this.writeMemory = writeMemory;
            this.readMemory  = readMemory;

            foreach (STR str in Enum.GetValues(typeof(STR)))
            {
                registers.Add((uint)str, new BoolRegister(this, (uint)str, str.ToString()));
            }
        }
Example #4
0
        internal MAX19506Memory(ScopeFpgaSettingsMemory fpgaMemory, ScopeStrobeMemory strobeMemory, ScopeFpgaRom fpgaRom)
        {
            this.fpgaSettings = fpgaMemory;
            this.strobeMemory = strobeMemory;
            this.fpgaRom      = fpgaRom;

            foreach (MAX19506 reg in Enum.GetValues(typeof(MAX19506)))
            {
                registers.Add((uint)reg, new ByteRegister(this, (uint)reg, reg.ToString()));
            }
        }