First of all: big thanks to Jeff for an awesome product! The floppy emulator has given my old Amiga 500 new life!

Anyway, I got this crazy idea that it would be a fun project to create my own (open source) HxC floppy manager software for Amiga. It is my impression from reading through some of the forum threads here that it could be useful to others as well.
These are the main features I have in mind:
- Manager is installed as a resident module, so you only have to boot the manager disk once. On reboot, it will automatically open right before booting the disk so you can select which disk to boot.
- Ability to call up manager without rebooting, or simply to switch disks without using the buttons. This seems to be a recurring request. It will of course only be possible if the system is still running (so it rules out many games and demos), but this could still cover many use cases.
- Tiny size to keep down the amount of memory that needs to be reserved for the resident module. My goal so far is to keep it below 10k of memory usage when dormant. This seems plausible from what I have gathered so far.
- Write in assembly (at least the resident parts) - mainly for the size, but also for the fun of it.

- Reasonably colorful interface. The Amiga can show a lot of nice colors, so why not use them?

It should of course have the basic configuration features of the current manager. Other features that could be useful (mostly based on forum requests):
- Switch between PAL and NTSC
- Multiple configurations
- Basic file operations (copy, move, rename, delete)
- A device driver leveraging Direct Access, so you could actually mount the SD card on the Amiga. Yes, it's a crazy idea, I know, and it would be painfully slow, but why not?

The status of the project so far: I have studied the source code for the current manager and have Direct Access up and running in some test code. The loading and resident module code is working. And I have familiarized myself with the FAT32 filesystem. And brainstormed a lot.

I have a few other projects going on at the moment, so it will be at least a couple of months before there will be anything to see. But I thought I could just as well present the idea here now, to get some feedback.