x-heep icon indicating copy to clipboard operation
x-heep copied to clipboard

eXtendable Heterogeneous Energy-Efficient Platform based on RISC-V

Results 109 x-heep issues
Sort by recently updated
recently updated
newest added

After following the steps in documentation when i do openroad-sky130 the following error shows : DEBUG: pre_build script 'sv2v_in_place': ['python3', 'util/sv2v_in_place.py', '--incdir-list=incdirs.txt', '--define-if=prim:SYNTHESIS', '--sv2v=sv2v', '--verbose', '--merge', 'files.txt', '-DCOCOTB_SIM=1', '-DSYNTHESIS=1', '-DVERILATOR=1']...

Added an example of how to perform data processing applications when the data does not fit the avaliable SRAM space, so it's necessary to save it as "flash_only" and read...

- Fixed timer SDK (that was not working in WFI). - Added timer function for inirtializing timer to measure time in microseconds instead of cycles . - Added fuction for...

closes #503 This PR adds two small paragraphs to the "eXtend X-HEEP" documentation, including information about a forked project that uses DPI calls to communicate with an external process.

Some hjson files in X-HEEP use trailing comma after a "quoteless string" which isn't valid in the standard (https://hjson.github.io/syntax.html): > Do not add commas or comments as they would become...

depends on https://github.com/esl-epfl/cv32e40px/pull/8

Hjson files should not contain commas at the end of each line. In particular, they MUST NOT in the case of "quoteless strings". However, the use of these commas is...

The use of `in` for string comparison results in `"name" in "name2"` giving a false positive; the right thing is to use `==`. In peripheral_subsystem.sv.tpl, this may result in the...

This issue affects the following files (that I noticed): * hw/core-v-mini-mcu/peripheral_subsystem.sv.tpl * util/mcu_gen.py For some reason, the Python `in` operator is being used to compare a string variable with a...