Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/mame/mame.lst
Original file line number Diff line number Diff line change
Expand Up @@ -28435,7 +28435,7 @@ rabbitjt
tmmjprd
tmpdoki

@source:mg1/mg1.cpp
@source:whitechapel/mg1.cpp
mg1

@source:microcraft/dim68k.cpp
Expand Down
2 changes: 1 addition & 1 deletion src/mame/mg1/mg1.cpp → src/mame/whitechapel/mg1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#include "emu.h"

#include "kbd.h"
#include "mg1_kbd.h"

#include "bus/rs232/rs232.h"
#include "cpu/ns32000/ns32000.h"
Expand Down
2 changes: 1 addition & 1 deletion src/mame/mg1/kbd.cpp → src/mame/whitechapel/mg1_kbd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/

#include "emu.h"
#include "kbd.h"
#include "mg1_kbd.h"

#define VERBOSE 0
#include "logmacro.h"
Expand Down
6 changes: 3 additions & 3 deletions src/mame/mg1/kbd.h → src/mame/whitechapel/mg1_kbd.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// license:BSD-3-Clause
// copyright-holders:Patrick Mackinlay
#ifndef MAME_MG1_KBD_H
#define MAME_MG1_KBD_H
#ifndef MAME_WHITECHAPEL_MG1_KBD_H
#define MAME_WHITECHAPEL_MG1_KBD_H

#pragma once

Expand Down Expand Up @@ -36,4 +36,4 @@ class mg1_kbd_device

DECLARE_DEVICE_TYPE(MG1_KBD, mg1_kbd_device)

#endif // MAME_MG1_KBD_H
#endif // MAME_WHITECHAPEL_MG1_KBD_H
Loading