// license:BSD-3-Clause // copyright-holders:Bartman/Abyss /*************************************************************************** Brother LW-30 Disk image format see https://github.com/BartmanAbyss/brother-diskconv for disk conversion tool ***************************************************************************/ #ifndef MAME_FORMATS_LW30_DSK_H #define MAME_FORMATS_LW30_DSK_H #pragma once #include "flopimg.h" class lw30_format : public floppy_image_format_t { public: virtual int identify(util::random_read& io, uint32_t form_factor, const std::vector &variants) const override; virtual bool load(util::random_read &io, uint32_t form_factor, const std::vector& variants, floppy_image &image) const override; virtual const char *name() const noexcept override; virtual const char *description() const noexcept override; virtual const char *extensions() const noexcept override; virtual bool supports_save() const noexcept override; }; extern const lw30_format FLOPPY_LW30_FORMAT; #endif // MAME_FORMATS_LW30_DSK_H