jorolf
jorolf
There's currently no way to find out if someone has a special title/color e.g. ztrot "osu!academy professor" / FF9900 or Tom94 "osu!dev" / E45678
Whenever the light overlay is enabled and I step into a nether portal my game hard crashes. Stacktrace: ``` FATAL ERROR in native method: Thread[light-overlay-1,5,main]: No context is current or...
Intellij allows changing the severity of warning that are shown in the code:  The plugin however exposes only a single inspection which doesn't allow setting different warning levels based...
There should be a universal AXI `Signature` that can be used across the Amaranth ecosystem. I'm planning on writing an AXI Manager in Amaranth (which I might make open-source) and...
To reproduce: ```python from amaranth.lib import wiring from amaranth import * from amaranth_soc import csr class Foo(wiring.Component): bus: wiring.In(csr.Signature(addr_width=12, data_width=32)) def __init__(self): super().__init__() builder = csr.Builder(addr_width=12, data_width=32) with builder.Index(1): builder.add("bar",...
In the following code, `DUT.first` and `DUT.second` are separate signals. They are assigned different attributes: ```python from amaranth import * from amaranth.back import rtlil, verilog import amaranth_playground from amaranth.lib import...