bitfixer / bf-romulator

Romulator - RAM/ROM replacement and debug for 6502 CPU systems
144 stars 21 forks source link

Raspberry Pi Zero support? #5

Open lagomorph opened 2 years ago

lagomorph commented 2 years ago

Any chance of building this on a RPi Zero? Looks like apio doesn't support linux_armv6l.

bitfixer commented 2 years ago

Hi John, Thanks for the information, I was not aware that apio didn't support the zero, that's too bad. I hadn't tried it on mine. An alternative that I often do to get faster build times is to install apio and its dependencies on another machine, do builds there, and then just use the pi for programming the device from the binary and for debugging. Apio installs on Linux, on a Linux flavor installed with the Linux subsystem on windows (what I generally use), and will also install on Mac OS as well. Then you can build the ROMulator image from there with "make bin/romulator.bin", scp the file to the pi and then "bin/programmer_spi < romulator.bin" to program the device. Happy to help with this, please let me know if you have any questions. Thanks Mike @.***

On Sat, Aug 21, 2021 at 3:19 PM John Scarfone @.***> wrote:

Any chance of building this on a RPi Zero? Looks like apio doesn't support linux_armv6l.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/bitfixer/bf-romulator/issues/5, or unsubscribe https://github.com/notifications/unsubscribe-auth/AANYKOKJOU37YTDCUEHKKSLT6AQ7PANCNFSM5CSIOMYQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&utm_campaign=notification-email .

lagomorph commented 2 years ago

No problem, Mike. I'll probably end up building on MacOS. Thanks.