I have written a new Emulator for the Raspberry Pi.
The development is still in a very early stage but it will run very fast.
Features:
- m68000 cpu
- MMU and 4MB Ram
- a little bit MFP
- Keyboard ACIA
- Falcon Videl-Shifter
- mount HardDisk image
- rtc
To create an image "mkfs.dos" / "mkfs.vfat" is needed. If not installed, then install it with
Code: Select all
sudo apt-get install dosfstools
Code: Select all
dd if=/dev/zero of=scsi.img bs=1M count=10
mkdosfs -A scsi.img
mkdir scsi
sudo mount -o loop scsi.img scsi
Simple copy files to /scsi to fill the image.
Starting RaspARI:before you start RaspARI you mußt unmount the scsi.img
Code: Select all
sudo umount scsi.img
Code: Select all
sudo ./raspari.elf