@ersmith Ok, does seem there is a problem with loadp2 and -himem=flash.
One setup did not have "#define MICROPY_PY_SELECT (1)" in it and was just a hair smaller and that works.
But, when that is added, it can no longer load.
The difference in code size is tiny:
text data bss dec
294540 16936 217640 529116 --> Won't load
292848 16904 217640 527392 --> Loads ok
Here are two elf examples. Smaller one loads, bigger one won't...
@ersmith Watching this video about RISCV in FPGA...
They are making a big deal about being able to create custom instructions.
But, this is something that already exists in riscvp2, right?
Know there are custom instructions available, but not sure if they are considered part of ALU or not...
@Rayman said:
@ersmith Watching this video about RISCV in FPGA...
They are making a big deal about being able to create custom instructions.
But, this is something that already exists in riscvp2, right?
Know there are custom instructions available, but not sure if they are considered part of ALU or not...
Yes, riscvp2 has custom instructions for a bunch of P2 operations (such as pin manipulation). It uses the standard instruction space that RISC-V reserves for custom instructions.
riscvp2 isn't an interpreter, so "considered part of the ALU" doesn't really apply.
Comments
@ersmith I'll try that thanks.
On another front, I'm having problem with loadp2 and the -HIMEM=flash .elf outputs.
Seems above some size, it gives me:
On one computer, was able to fix it by adding the "-v" verbose option.
Haven't found a solution yet on another...
WAIT A SEC. Seems the binary on the working PC also works on this problem PC...
Must be a problem in the code somewhere...
@ersmith Ok, does seem there is a problem with loadp2 and -himem=flash.
One setup did not have "#define MICROPY_PY_SELECT (1)" in it and was just a hair smaller and that works.
But, when that is added, it can no longer load.
The difference in code size is tiny:
text data bss dec
294540 16936 217640 529116 --> Won't load
292848 16904 217640 527392 --> Loads ok
Here are two elf examples. Smaller one loads, bigger one won't...
Added an extra delay in loadp2.c and seems to have fixed it:
@ersmith Watching this video about RISCV in FPGA...
They are making a big deal about being able to create custom instructions.
But, this is something that already exists in riscvp2, right?
Know there are custom instructions available, but not sure if they are considered part of ALU or not...
Yes, riscvp2 has custom instructions for a bunch of P2 operations (such as pin manipulation). It uses the standard instruction space that RISC-V reserves for custom instructions.
riscvp2 isn't an interpreter, so "considered part of the ALU" doesn't really apply.