Ryan Hinton

Results 11 issues of Ryan Hinton

I am considering using rwx for a project, but I am concerned that (1) there is no documentation, and (2) there is no way to get support. (This is the...

I use the HtmlWindow control and wxSplitterWindow. Any guesses when these will be added? If there were any information on how to create the interface code, I would consider trying...

The current interface already has options to read an integer array. Sometimes I want just a single integer. Please add a `jsonGetInteger` function. Thanks!

I want to use JSON-for-VHDL for managing configuration information for a DSP-heavy design. That means I need to store and read real values. Please add a `jsonGetReal` function. Probably the...

My build system is setup to copy files to the simulation directory, so I can load them without any relative or absolute path specification. Doing so causes problems with the...

Function `base16_decode` in `Encodings.pkg.vhdl` fails on odd-length strings. Suggested correction: ``` function base16_decode(constant str: string) return string is variable result: string (1 to (str'length + 1) / 2); variable str_i...

This may be a shortage in my understanding of how things *should* work. Consider the following partial example. ``` shared variable cov : CovPType; variable a,b : integer; cov.AddCross(1, GenBin(1),...

Reviewing

On line 2226 of the current AlertLogPkg.vhd, the base `AffirmIf` procedure calls AlertLogStruct.Alert(AlertLogID, ReceivedMessage & ExpectedMessage, ERROR) ; which forces calling `Alert` with a severity of `ERROR`. However, `AffirmIf` already...

enhancement

UPDATE: When I changed `DEFAULT_DELAY => 1 PS`, the problem was resolved. If a delay of 0 is not supported, I suggest an `assert` (at least) in `Axi4MemoryVTI.vhd`. I'm using...

I'm loving the AXI4 VIP in this repo. I'm using `Axi4/src/Axi4MemoryVTI.vhd`. I finally tracked down an Alert output to the fact that my design is issuing read and write transactions...