Lines Matching defs:address

27         byte ReadByte(ulong address, IPeripheral context = null, ulong? cpuState = null);  in ReadByte()
28 byte ReadByteWithState(ulong address, IPeripheral context, IContextState stateObj); in ReadByteWithState()
29 … void WriteByte(ulong address, byte value, IPeripheral context = null, ulong? cpuState = null); in WriteByte()
30 … void WriteByteWithState(ulong address, byte value, IPeripheral context, IContextState stateObj); in WriteByteWithState()
32 ushort ReadWord(ulong address, IPeripheral context = null, ulong? cpuState = null); in ReadWord()
33 ushort ReadWordWithState(ulong address, IPeripheral context, IContextState stateObj); in ReadWordWithState()
34 … void WriteWord(ulong address, ushort value, IPeripheral context = null, ulong? cpuState = null); in WriteWord()
35 … void WriteWordWithState(ulong address, ushort value, IPeripheral context, IContextState stateObj); in WriteWordWithState()
37 uint ReadDoubleWord(ulong address, IPeripheral context = null, ulong? cpuState = null); in ReadDoubleWord()
38 uint ReadDoubleWordWithState(ulong address, IPeripheral context, IContextState stateObj); in ReadDoubleWordWithState()
39 …void WriteDoubleWord(ulong address, uint value, IPeripheral context = null, ulong? cpuState = null… in WriteDoubleWord()
40 …void WriteDoubleWordWithState(ulong address, uint value, IPeripheral context, IContextState stateO… in WriteDoubleWordWithState()
42 ulong ReadQuadWord(ulong address, IPeripheral context = null, ulong? cpuState = null); in ReadQuadWord()
43 ulong ReadQuadWordWithState(ulong address, IPeripheral context, IContextState stateObj); in ReadQuadWordWithState()
44 …void WriteQuadWord(ulong address, ulong value, IPeripheral context = null, ulong? cpuState = null); in WriteQuadWord()
45 …void WriteQuadWordWithState(ulong address, ulong value, IPeripheral context, IContextState stateOb… in WriteQuadWordWithState()
47 …void ReadBytes(ulong address, int count, byte[] destination, int startIndex, bool onlyMemory = fal… in ReadBytes()
48 … byte[] ReadBytes(ulong address, int count, bool onlyMemory = false, IPeripheral context = null); in ReadBytes()
50 … void WriteBytes(byte[] bytes, ulong address, bool onlyMemory = false, IPeripheral context = null); in WriteBytes()
51 …void WriteBytes(byte[] bytes, ulong address, int startingIndex, long count, bool onlyMemory = fals… in WriteBytes()
52 …void WriteBytes(byte[] bytes, ulong address, long count, bool onlyMemory = false, IPeripheral cont… in WriteBytes()
57 IBusRegistered<IBusPeripheral> WhatIsAt(ulong address, IPeripheral context = null); in WhatIsAt()
58 IPeripheral WhatPeripheralIsAt(ulong address, IPeripheral context = null); in WhatPeripheralIsAt()
75 void UnregisterFromAddress(ulong address, ICPU context = null); in UnregisterFromAddress()
78 …void AddWatchpointHook(ulong address, SysbusAccessWidth width, Access access, BusHookDelegate hook… in AddWatchpointHook()
79 void RemoveWatchpointHook(ulong address, BusHookDelegate hook); in RemoveWatchpointHook()
80 bool TryGetWatchpointsAt(ulong address, Access access, out List<BusHookHandler> result); in TryGetWatchpointsAt()
81 void RemoveAllWatchpointHooks(ulong address); in RemoveAllWatchpointHooks()
94 IBusRegistered<MappedMemory> FindMemory(ulong address, ICPU context = null); in FindMemory()
95 bool IsMemory(ulong address, ICPU context = null); in IsMemory()