These are some simple tools to facilitate using the pfbdk disk emulator for Epson PX8 (and PX4?) computers. diskdefs: A cpmtools diskdefs file with added entry for Epson PX8 type disks as used in the other tools here. cpmtools allows listing the directory and copying to and from the image, as well as other abilities. The format name for the PX8 entries is "epspx8" All the actual floppy drives used on the PX8, the PF10, TF15, and TF20, use the same logical format. Makefile: The make control file to create (and install) the two utilities below. Simply running "make" in this folder should build the two programs. Running "make install" will attempt to copy the two programs to a local "bin" directory in your home directory (" ~/bin ") px8_mkdisk.c: Source code for a very simple utility that creates a blank disk image as used by the pfbdk disk emulator and the cpmtools definition above. To create an image called "myimage.pfd" run the following command: px8_mkdisk myimage.pfd px8_d88.c: Source code for a crude conversion utility that takes a .d88 disk emulator image file as used by the vfloppy disk emulator (on FJKraan's web site here: https://fjkraan.home.xs4all.nl/comp/px4/vfloppy/ ) and converts it to a raw image file as used by pfbdk and cpmtools. To convert an image run: px8_d88 input.d88 output.pfd These tools are crude, but work. That's all I need. If you want to enhance them, feel free. Will Cooke