summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/alto2/a2kbd.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2020-08-25 21:45:05 +1000
committer Vas Crabb <vas@vastheman.com>2020-08-25 21:45:05 +1000
commit65abe0cd888078a242744383c8372c46e87f2090 (patch)
treeecdd300ef3fc9ed179853f21163c8b7b2c1ab926 /src/devices/cpu/alto2/a2kbd.h
parent1a2e6c29ef019ba48ee11aaae4e034bd792554b4 (diff)
Get rid of a bunch of _Names - any name starting with an underscore followed by an uppercase letter is reserved
Diffstat (limited to 'src/devices/cpu/alto2/a2kbd.h')
-rw-r--r--src/devices/cpu/alto2/a2kbd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/alto2/a2kbd.h b/src/devices/cpu/alto2/a2kbd.h
index 856695c4bd6..e48eeb65a9c 100644
--- a/src/devices/cpu/alto2/a2kbd.h
+++ b/src/devices/cpu/alto2/a2kbd.h
@@ -93,8 +93,8 @@
#define A2_KEY_FR5 MAKE_KEY(3,000) //!< ADL right function key 5
#else // ALTO2_DEFINE_CONSTANTS
-#ifndef _A2KBD_H_
-#define _A2KBD_H_
+#ifndef MAME_CPU_ALTO2_A2KBD_H
+#define MAME_CPU_ALTO2_A2KBD_H
struct {
uint16_t bootkey; //!< boot key - key code pressed before power on
uint16_t matrix[4]; //!< a bit map of the keys pressed (ioports ROW0 ... ROW3)
@@ -105,5 +105,5 @@ uint16_t kbd_ad_r(offs_t offset); //!< read the keyboard matrix
void init_kbd(uint16_t bootkey = 0177777); //!< initialize the keyboard hardware, optionally set the boot key
void exit_kbd(); //!< deinitialize the keyboard hardware
void reset_kbd(); //!< reset the keyboard hardware
-#endif // _A2KBD_H_
+#endif // MAME_CPU_ALTO2_A2KBD_H
#endif // ALTO2_DEFINE_CONSTANTS