diff --git a/src/BizHawk.Emulation.Common/Interfaces/Services/IMemoryDomains.cs b/src/BizHawk.Emulation.Common/Interfaces/Services/IMemoryDomains.cs
index 85b4629363..aa96394955 100644
--- a/src/BizHawk.Emulation.Common/Interfaces/Services/IMemoryDomains.cs
+++ b/src/BizHawk.Emulation.Common/Interfaces/Services/IMemoryDomains.cs
@@ -17,10 +17,16 @@ namespace BizHawk.Emulation.Common
{
MemoryDomain? this[string name] { get; }
+ /// implementation note: must also be in the collection
MemoryDomain MainMemory { get; }
bool HasSystemBus { get; }
+ ///
+ /// if is , the getter behaviour is undefined
+ /// (it may return or another domain)
+ /// implementation note: must also be in the collection
+ ///
MemoryDomain SystemBus { get; }
bool Has(string name);