Carlos Eduardo

Results 195 comments of Carlos Eduardo
trafficstars

I recently started to get errors on 14988 OID in my Mikrotik where it produced timeouts. I manually edited snmp.yml adding `version: 1` to the mikrotik config and it worked...

I think there is still some pending point on memory dedup with initialization annos like described here: https://github.com/chipsalliance/firrtl/issues/2168 There is a workaround tho.

Sure, will add to the PR and below: ```scala class DecType extends Bundle { val inst_type = UInt(InstructionType.getWidth.W) val inst = UInt(Instruction.getWidth.W) val to_alu = Bool() val branch = Bool()...

I'm trying to write a test case but it complains it's not in a Builder context: ```scala class DecoderSpec extends AnyFlatSpec { "decoder" should "decodeAs to an existing bundle" in...

In cases where my Bundle has Enums, I'm getting a cast warning like `Decoder.scala:44: Casting non-literal UInt to chiselv.Instruction. You can use chiselv.Instruction.safe to cast without this warning. in class...

I think this is the last missing piece to have a nice API for decode (1H enum + Mux1H + decodeAs + Bitpat accepting enums) :)

I believe we could have some syntactic sugar in chisel3.util.experimental.decode wrapping the functionality for an easy-to-approach way to define the decoder (as straightforward as in ListLookup). The process of having...

@sequencer added a nice example to my core on the use of decoder/TruthTable: https://github.com/carlosedp/chiselv/pull/2 I think there are a couple of places it could be "nicer" :) ```scala val signals...

Addressed point 1 above with https://github.com/chipsalliance/chisel3/pull/2327