예제 #1
0
 protected MemoryMappedRegister32(RegistersMemorySection section, Int32 offset, Boolean shared) : this(section, offset)
 {
     m_Shared = shared;
 }
예제 #2
0
 protected MemoryMappedRegister32(RegistersMemorySection section, Int32 offset) : base()
 {
     m_Section = section;
     m_Offset  = offset;
 }
예제 #3
0
 protected MemoryMappedRegister32(RegistersMemorySection section, Int32 offset, Boolean shared, Int32 sharedStop) : this(section, offset, shared)
 {
     m_SharedStop = sharedStop;
 }