summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/megadrive/md_slot.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2019-10-16 18:31:48 +1100
committer Vas Crabb <vas@vastheman.com>2019-10-16 18:31:48 +1100
commit063e81d756b37fb97493c7da42c817bd7f6390aa (patch)
tree1ef36b71f19f1c5afc2fe296185a2da8da3daf18 /src/devices/bus/megadrive/md_slot.h
parent151f5fca2555be797ee45ab01bd226d8c71eae0e (diff)
(nw) add doxygen comments for a bunch of core stuff, and convert a bunch of comments to doxygen format
Diffstat (limited to 'src/devices/bus/megadrive/md_slot.h')
-rw-r--r--src/devices/bus/megadrive/md_slot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/megadrive/md_slot.h b/src/devices/bus/megadrive/md_slot.h
index 42fd2503f76..e891e5a1edb 100644
--- a/src/devices/bus/megadrive/md_slot.h
+++ b/src/devices/bus/megadrive/md_slot.h
@@ -106,8 +106,8 @@ public:
virtual int read_test() { return 0; } // used by Virtua Racing test
- /* this probably should do more, like make Genesis V2 'die' if the SEGA string is not written promptly */
- virtual DECLARE_WRITE16_MEMBER(write_tmss_bank) { m_device.logerror("Write to TMSS bank: offset %x data %x\n", 0xa14000 + (offset << 1), data); };
+ // this probably should do more, like make Genesis V2 'die' if the SEGA string is not written promptly
+ virtual DECLARE_WRITE16_MEMBER(write_tmss_bank) { device().logerror("Write to TMSS bank: offset %x data %x\n", 0xa14000 + (offset << 1), data); };
virtual void rom_alloc(size_t size, const char *tag);
virtual void nvram_alloc(size_t size);