buzmeg
buzmeg
In tcp_client_probe.py the following code exists: ``` _PROPERTY_CONVERTERS = { 'capabilities': lambda value: [DebugProbe.Capability[v] for v in value], 'supported_wire_protocols': lambda value: [DebugProbe.Protocol[v] for v in value], 'wire_protocol': lambda value: DebugProbe.Protocol[value]...
Attempting to rebuild the Litex example from scratch fails with: ``` ERROR (PR2028) : The constrained location is useless in current package ERROR (PR2017) : 'led4' cannot be placed according...
As far as I can tell, enum types collapse to LogicArrayObject and there is no way to get the named values let alone use the enum accessors like .name(), .next(),...
Due to Writergate, TinyVG will not build on Zig 0.15 or forward. Thanks.
I have two files that are identical except for name: ``` √ Litex % cmp -l sipeed_tang_primer_20k.fs sipeed_tang_primer_20k.fs.turtleslow √ Litex % diff sipeed_tang_primer_20k.fs sipeed_tang_primer_20k.fs.turtleslow √ Litex % ``` Yet, when...
If you configure with ```cmake -DBUILD_STATIC=ON ..```, the system will happily build until: ``` /usr/bin/ld: cannot find -ludev: No such file or directory ``` Of course, when you look at...
For both Zig 0.15.1 as well as 0.16.0-dev.234, on Linux x86_64 Fedora 42 as well as Ubuntu 24.04. The following program causes a Zig compiler crash: ``` const std =...