Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/
DRiscV32.cs41 protected override byte MostSignificantBit => 31; field in Antmicro.Renode.Peripherals.CPU.RiscV32
DRiscV64.cs41 protected override byte MostSignificantBit => 63; field in Antmicro.Renode.Peripherals.CPU.RiscV64
DBaseRiscV.cs475 var registerWidth = (uint)MostSignificantBit + 1;
576 …rn nonstandardCSR.Keys.Select(index => new CPURegister((int)index, MostSignificantBit + 1, false, … in GetCustomCSRs()
581 return BitHelper.IsBitSet(exceptionIndex, MostSignificantBit); in IsInterrupt()
584 protected abstract byte MostSignificantBit { get; } property in Antmicro.Renode.Peripherals.CPU.BaseRiscV
1125 if(bits.Length == 0 || int.Parse(bits) != parent.MostSignificantBit + 1) in Decode()