SpinalHDL icon indicating copy to clipboard operation
SpinalHDL copied to clipboard

Scala based HDL

Results 288 SpinalHDL issues
Sort by recently updated
recently updated
newest added

i create a sub module with a state machine like this: ``` class test001 extends Component { val io = new Bundle { val a = in Bool() val b...

Hi team! I'm trying SpinalHDL using polynote (just because it has Scala support by default, don't have to install another kernel again). I wrote a simple component according to to...

I'my currently trying out fix point operations and I'm missing a few features: - Widen a fix point number (both the exponent and the resolution, separately) - Cast between signed...

It would be nice to generate a C header file containing neat defines for the register offsets. These defines could be used in a C driver to address the registers....

For anonymous `Bundle`, scala cannot clone its type automatically now. Here is an example. ```scala case class A() extends Bundle { val b = new Bundle { val c =...

initialContents is not sufficient: it still requires way too much knowledge of Scala to simply load a binary file.

idea :bulb:

I have the simple problem, that I want to connect my 12 bit address space AXI slave to a 32bit AXI master. The wires can simply be `resized` without any...

AXI4 and it's lite variants are not two distinct specifications. In reality, it is more like AXI is a set of features, where AXI lite uses less of them. Therefore,...

I noticed that travis does exit with an error in the publish stage. https://travis-ci.org/SpinalHDL/SpinalHDL/jobs/634856950?utm_medium=notification&utm_source=github_status It seams a problem with "docker-credential-helpers". I'll fix it later(this just a reminder for me).

I wondering if something like this can be adjusted. Similar to https://github.com/SpinalHDL/SpinalHDL/issues/132. If I have a Bundle that I use up a hierarchy, outputs seem to get reassigned. Here is...

feature :sparkles: