tvlad1234 / pico-rv32ima

Running Linux on RP2040 with the help of RISC-V emulation
Other
235 stars 18 forks source link

Esp32 port #12

Closed ElectroBoy404NotFound closed 1 year ago

ElectroBoy404NotFound commented 1 year ago

Hello, Is it possible to port this over to the esp32? If yes, what files do I need to change? Also, how to use sd card as ram instead of psram?

tvlad1234 commented 1 year ago

It has been ported to esp32, see this project.

ElectroBoy404NotFound commented 1 year ago

It has been ported to esp32, see this project.

It uses a PS-RAM, which am trying to avoid. I can build an emulator form scratch using this project as base, but need help on using SD-RAM insted of PS-RAM

tvlad1234 commented 1 year ago

Dmitry Grinberg's Linux AVR project uses SDRAM. There are also some SDRAM libraries for Arduino. I'd suggest using those as a reference when implementing SDRAM into your project.

Using SDRAM instead of PSRAM is not within the scope of this project and as such, I won't be able to provide guidance on that.