01-27-2021, 10:56 AM
I successfully got Pulpissimo with RISCY working on the Digilent ARTY-A7-100T board, running the "Hello" example using the pulp-SDK. Yeeey!
I configured RISCY to not use a floating point unit, by setting:
in xilinx_pulpissimo.v.
However, the gcc commands of the "Hello" example, following "make clean all", contain:
So the questions are:
Additional info: the toolchain was setup using the instructions at https://github.com/pulp-platform/pulp-ri...ation-pulp.
Thanks!
I configured RISCY to not use a floating point unit, by setting:
Code:
localparam USE_FPU = 0;
in xilinx_pulpissimo.v.
However, the gcc commands of the "Hello" example, following "make clean all", contain:
Code:
... -march=rv32imfcxpulpv2 -mfdiv ...
So the questions are:
- Does this mean floating point instructions are potentially still being generated?
- If so, how do I make the toolchain aware that RISCY was configured without FP unit?
Additional info: the toolchain was setup using the instructions at https://github.com/pulp-platform/pulp-ri...ation-pulp.
Thanks!