Lines Matching defs:address
33 … public virtual byte ReadByte(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadByte()
42 … public virtual byte ReadByteWithState(ulong address, IPeripheral context, IContextState stateObj) in ReadByteWithState()
51 …public virtual void WriteByte(ulong address, byte value, IPeripheral context = null, ulong? cpuSta… in WriteByte()
59 …public virtual void WriteByteWithState(ulong address, byte value, IPeripheral context, IContextSta… in WriteByteWithState()
67 … public virtual ushort ReadWord(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadWord()
76 …public virtual ushort ReadWordWithState(ulong address, IPeripheral context, IContextState stateObj) in ReadWordWithState()
85 …public virtual void WriteWord(ulong address, ushort value, IPeripheral context = null, ulong? cpuS… in WriteWord()
93 …public virtual void WriteWordWithState(ulong address, ushort value, IPeripheral context, IContextS… in WriteWordWithState()
101 …public virtual uint ReadDoubleWord(ulong address, IPeripheral context = null, ulong? cpuState = nu… in ReadDoubleWord()
110 …public virtual uint ReadDoubleWordWithState(ulong address, IPeripheral context, IContextState stat… in ReadDoubleWordWithState()
119 …public virtual void WriteDoubleWord(ulong address, uint value, IPeripheral context = null, ulong? … in WriteDoubleWord()
127 …public virtual void WriteDoubleWordWithState(ulong address, uint value, IPeripheral context, ICont… in WriteDoubleWordWithState()
135 …public virtual void ReadBytes(ulong address, int count, byte[] destination, int startIndex, bool o… in ReadBytes()
143 …public virtual byte[] ReadBytes(ulong address, int count, bool onlyMemory = false, IPeripheral con… in ReadBytes()
155 …public virtual void WriteBytes(byte[] bytes, ulong address, bool onlyMemory = false, IPeripheral c… in WriteBytes()
160 …public virtual void WriteBytes(byte[] bytes, ulong address, int startingIndex, long count, bool on… in WriteBytes()
168 …public virtual void WriteBytes(byte[] bytes, ulong address, long count, bool onlyMemory = false, I… in WriteBytes()
188 … public virtual IBusRegistered<IBusPeripheral> WhatIsAt(ulong address, IPeripheral context = null) in WhatIsAt()
194 public virtual IPeripheral WhatPeripheralIsAt(ulong address, IPeripheral context = null) in WhatPeripheralIsAt()
250 …public virtual void AddWatchpointHook(ulong address, SysbusAccessWidth width, Access access, BusHo… in AddWatchpointHook()
270 public virtual void RemoveWatchpointHook(ulong address, BusHookDelegate hook) in RemoveWatchpointHook()
275 …public virtual bool TryGetWatchpointsAt(ulong address, Access access, out List<BusHookHandler> res… in TryGetWatchpointsAt()
315 …public virtual ulong ReadQuadWord(ulong address, IPeripheral context = null, ulong? cpuState = nul… in ReadQuadWord()
320 …public virtual ulong ReadQuadWordWithState(ulong address, IPeripheral context, IContextState state… in ReadQuadWordWithState()
325 …public virtual void WriteQuadWord(ulong address, ulong value, IPeripheral context = null, ulong? c… in WriteQuadWord()
330 …public virtual void WriteQuadWordWithState(ulong address, ulong value, IPeripheral context, IConte… in WriteQuadWordWithState()
420 public virtual void UnregisterFromAddress(ulong address, ICPU context = null) in UnregisterFromAddress()
425 public virtual IBusRegistered<MappedMemory> FindMemory(ulong address, ICPU context = null) in FindMemory()
430 public virtual bool IsMemory(ulong address, ICPU context = null) in IsMemory()
460 public virtual void RemoveAllWatchpointHooks(ulong address) in RemoveAllWatchpointHooks()
490 …protected virtual bool ValidateOperation(ref ulong address, BusAccessPrivileges accessType, IPerip… in ValidateOperation()