Adam Barnes

Results 30 comments of Adam Barnes

Thank you for this excellent project which I am using to prove an embedded graphics controller in an FPGA. My hardware supports multiple display resolutions so the initialization of `clip_window`...

My framebuffer driver maintains the current display size as ``` uint16_t fb_width; uint16_t fb_height; ``` So in my `hagl_hal.h` I have ``` #define DISPLAY_WIDTH fb_width #define DISPLAY_HEIGHT fb_height ``` This...

I am changing the resolution at runtime. My CPU is testing my frame buffer hardware in various resolutions. My simple tests are running OK with the change to `clip_window` initialization,...

My FPGA hardware and test software is working well. The repo is [here](https://github.com/amb5l/tyto_project) and documentation for the graphics design is [here](https://github.com/amb5l/tyto_project/blob/master/doc/mb_fb/mb_fb.adoc). I don't think you need to take account of...

From one of the comments on Stack Overflow: "MinGW uses microsoft's c library msvcrt-- this library only conforms to c89 and doesn't understand z". Another says "You can instead link...

This script is a potential alternative to NVC's `contrib/install-uvvm.sh` that pulls the list of files to be compiled from UVVM's `component_list.txt` and `compile_order.txt` files. Note that it can take a...

Note you can drop the `echo "$lines"` from the above.

Great work. I tested https://github.com/nickg/nvc/commit/813728d00c468838b97db35f1d1e6d55226dbe39 against https://github.com/UVVM/UVVM/commit/fd7f5056a4d2dd1547414dcc2bb89baa2a451c43 and it works perfectly. Totally agree with the default branch.

Agreed, apologies for not spotting #511. Please feel free to close this issue.

I checked out https://github.com/nickg/nvc/commit/846d0aa23e39bf8064341e83ad800151444febb5 and tested it against UVVM. The reported error seems to have been resolved, however the compilation threw a new error that seems to be associated with...