Home
last modified time | relevance | path

Searched refs:PythonPeripheral (Results 1 – 3 of 3) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/PythonPeripherals/
DSerializationTests.cs31 var pyDev = new PythonPeripheral(100, true, script: source); in ShouldSerializeSimplePyDev()
49 var pyDev = new PythonPeripheral(100, true, script: source); in ShouldSerializePyDevWithListAndDictionary()
56 var copy = serializer.Deserialize<PythonPeripheral>(mStream); in ShouldSerializePyDevWithListAndDictionary()
70 var pyDev = new PythonPeripheral(100, true, script: source); in ShouldSerializePyDevWithModuleImport()
85 var pyDev = new PythonPeripheral(100, true, script: source); in ShouldSerializeMachineWithSimplePyDev()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Python/
DPeripheralPythonEngine.cs52 public PeripheralPythonEngine(PythonPeripheral peripheral) in PeripheralPythonEngine()
58 …public PeripheralPythonEngine(PythonPeripheral peripheral, Func<ScriptEngine, ScriptSource> source… in PeripheralPythonEngine()
123 private readonly PythonPeripheral peripheral;
DPythonPeripheral.cs22 var pyDev = new PythonPeripheral(size, initable, filename: path); in PyDevFromFile()
32 var pyDev = new PythonPeripheral(size, initable, script: script); in PyDevFromString()
42 …public class PythonPeripheral : IBytePeripheral, IWordPeripheral, IDoubleWordPeripheral, IQuadWord… class
44 …public PythonPeripheral(int size, bool initable = false, string script = null, string filename = n… in PythonPeripheral() method in Antmicro.Renode.Peripherals.Python.PythonPeripheral