redquark-amiberry-rb/README.md

34 lines
996 B
Markdown
Raw Normal View History

2018-02-04 21:02:03 +01:00
# Amiga emulator for the Raspberry Pi and other ARM SoC
2018-02-05 00:43:36 +01:00
Amiberry is an optimized Amiga emulator, designed for ARM-based SoC devices like the Raspberry Pi.
Amiberry is a labour of love, from many people.
It's made possible only thanks to the tremendous amount of work from lots of people in the Amiga community.
2018-02-04 21:02:03 +01:00
# Pre-requisites
2018-02-05 00:37:57 +01:00
Please check the relevant Wiki section: [First installation](https://github.com/midwan/amiberry/wiki/First-Installation)
2016-12-20 13:21:13 +01:00
2018-02-04 21:02:03 +01:00
# Compiling Amiberry
Clone this repo:
cd ~
2018-02-05 00:37:57 +01:00
git clone https://github.com/midwan/amiberry
cd amiberry
2018-02-04 21:02:03 +01:00
The default platform is currently "rpi3", so for Raspberry Pi 3 (SDL1) you can just type:
2016-12-20 13:21:13 +01:00
2018-02-05 00:37:57 +01:00
make -j2
2016-12-20 13:21:13 +01:00
2018-02-04 21:02:03 +01:00
For Raspberry Pi 2 (SDL1):
2016-12-20 13:21:13 +01:00
2018-02-05 00:37:57 +01:00
make -j2 PLATFORM=rpi2
2018-02-04 21:02:03 +01:00
And for the SDL2 versions, you can use the following:
2018-02-05 00:37:57 +01:00
make -j2 PLATFORM=rpi3-sdl2-dispmanx
2018-02-04 21:02:03 +01:00
Or for Raspberry Pi 2 (SDL2):
2018-02-05 00:37:57 +01:00
make -j2 PLATFORM=rpi2-sdl2-dispmanx
2018-02-04 21:02:03 +01:00
You can check the Makefile for a full list of supported platforms!