summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2022-09-13 07:24:17 +1000
committer Vas Crabb <vas@vastheman.com>2022-09-13 07:25:10 +1000
commit0ba62796529ea38c683f86bff6f65c1d4fd076cb (patch)
treeac4e794479c88a1dbdd224a1e91a8dedc1c0d461 /src
parent5be6dbb670180ee83e0268fe575582622b1ddeae (diff)
bus/gameboy: Some header comment corrections.
Diffstat (limited to 'src')
-rw-r--r--src/devices/bus/gameboy/cartbase.cpp2
-rw-r--r--src/devices/bus/gameboy/huc3.cpp2
-rw-r--r--src/devices/bus/gameboy/mbc.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/gameboy/cartbase.cpp b/src/devices/bus/gameboy/cartbase.cpp
index 8e6796603a3..c36ceb7d837 100644
--- a/src/devices/bus/gameboy/cartbase.cpp
+++ b/src/devices/bus/gameboy/cartbase.cpp
@@ -1,4 +1,4 @@
-
+// license:BSD-3-Clause
// copyright-holders:Vas Crabb
/***************************************************************************
diff --git a/src/devices/bus/gameboy/huc3.cpp b/src/devices/bus/gameboy/huc3.cpp
index 9b420ec0df1..c91db517a49 100644
--- a/src/devices/bus/gameboy/huc3.cpp
+++ b/src/devices/bus/gameboy/huc3.cpp
@@ -9,7 +9,7 @@
The HuC-3 controller appears to only respond to A15-A13 and D6-D0, i.e.
addresses are effectively masked with 0xE000 and data is effectively masked
- with 0x3F.
+ with 0x7F.
Major components in the cartridge include:
* U1 program ROM
diff --git a/src/devices/bus/gameboy/mbc.h b/src/devices/bus/gameboy/mbc.h
index 6185b5bf7cb..ef48d215480 100644
--- a/src/devices/bus/gameboy/mbc.h
+++ b/src/devices/bus/gameboy/mbc.h
@@ -1,5 +1,5 @@
// license:BSD-3-Clause
-// copyright-holders:Fabio Priuli, Wilbert Pol
+// copyright-holders:Vas Crabb, Wilbert Pol
#ifndef MAME_BUS_GAMEBOY_MBC_H
#define MAME_BUS_GAMEBOY_MBC_H