// // Copyright (c) 2010-2024 Antmicro // // This file is licensed under the MIT License. // Full license text is available in 'licenses/MIT.txt'. // using Antmicro.Renode.Core; using Antmicro.Renode.Peripherals.Bus; namespace Antmicro.Renode.Peripherals.Mocks { public class TrivialPeripheral : IDoubleWordPeripheral, IKnownSize { public TrivialPeripheral() { } public void Reset() { } public uint ReadDoubleWord(long offset) { return 0; } public void WriteDoubleWord(long offset, uint value) { } public long Size => 0x1000; } }