EMXP is great! I just finished creating my custom SCSI2SD card.
I ended up creating 4 256mb "disks" for the E-III. Then, I downloaded these Emax banks:
http://www.hermannseib.com/english/synths/emax/fds/floppy.htmConverted them to EmuIII and saved them in one of the images provided. Then, I joined four 256mb disk files (with a little help from linux
) and DDed the resulting 1GB file to my SD card. After that, I configured SCSI2SD to use four 256mb LUNs and voila, everything is working as it should!!
Just for future reference, here are the steps I used. I find both linux and osx nicer to work with raw disk images, so I used Debian to combine the disk images, dump them to the sdcard, and configure the scsi2sd interface. I had to use a windows vm for emxp though.
1. In scsi2sd util, I created four devices of exactly 256mb in size. I used SCSI IDs 1, 3, 4 and 5, different serial number for each and automatic sector start. (in this case, these LUNs would start in sectors 0, 524288, 1048576 and 1572864).
2. Then, I saved some banks in the 250mb disk image found here:
www.emxp.net/Additional_downloads.htm3. I padded the 250mb disk file to 256mb using the linux command truncate:
# truncate -s 256M diskfile1.iso
4. Did the same thing to three additional copies of the 250mb disk image:
# truncate -s 256M diskfile2.iso
# truncate -s 256M diskfile3.iso
# truncate -s 256M diskfile4.iso
5. Then, I joined all four disk images in a larger 1GB file:
# cat diskfile1.iso diskfile2.iso diskfile3.iso diskfile4.iso > diskfileS.iso
6. Last, I dumped the 1GB file in the micro sd card:
# dd if=diskfileS.iso of=/dev/mmcblk0 bs=4M
# sync;sync
7. Finally, just popped in the sd card in the scsi2sd interface, and installed it in my EmuIII. It booted successfully, and all the banks I downloaded work great!
Thank you very much for your assistance, this wouldn't be possible without your help.