diff options
Diffstat (limited to 'src/lib/formats/mdos_dsk.cpp')
-rw-r--r-- | src/lib/formats/mdos_dsk.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/formats/mdos_dsk.cpp b/src/lib/formats/mdos_dsk.cpp index 933f17e193d..765ce1bc63c 100644 --- a/src/lib/formats/mdos_dsk.cpp +++ b/src/lib/formats/mdos_dsk.cpp @@ -1,7 +1,7 @@ // license:BSD-3-Clause // copyright-holders: 68bit /* - * mdos_dsk.c - Motorola MDOS compatible disk images + * mdos_dsk.cpp - Motorola MDOS compatible disk images * * The format is largely IBM 3740 compatible, with 77 tracks, and 26 sectors * per track, and a sector size of 128 bytes. Single sided disks were initially @@ -60,17 +60,17 @@ mdos_format::mdos_format() : wd177x_format(formats) { } -const char *mdos_format::name() const +const char *mdos_format::name() const noexcept { return "mdos"; } -const char *mdos_format::description() const +const char *mdos_format::description() const noexcept { return "Motorola MDOS compatible disk image"; } -const char *mdos_format::extensions() const +const char *mdos_format::extensions() const noexcept { return "dsk"; } |