diff options
author | 2015-05-22 12:12:40 -0400 | |
---|---|---|
committer | 2015-05-22 12:12:44 -0400 | |
commit | 04f90c492063cfaac78f84d8c2beedb51b3a514f (patch) | |
tree | 98b89a26ce02a62e2132c42f060191f527cd2f80 /src/emu/cpu | |
parent | 7093ad1009a292e3aeb93fc13c86201fd0dd86de (diff) |
Ownership/license (nw)
Diffstat (limited to 'src/emu/cpu')
-rw-r--r-- | src/emu/cpu/nec/v25.c | 2 | ||||
-rw-r--r-- | src/emu/cpu/nec/v25.h | 2 | ||||
-rw-r--r-- | src/emu/cpu/nec/v25instr.h | 2 | ||||
-rw-r--r-- | src/emu/cpu/nec/v25instr.inc | 2 | ||||
-rw-r--r-- | src/emu/cpu/nec/v25priv.h | 2 | ||||
-rw-r--r-- | src/emu/cpu/nec/v25sfr.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/emu/cpu/nec/v25.c b/src/emu/cpu/nec/v25.c index 1fc7d965856..bf4ee0ab6ed 100644 --- a/src/emu/cpu/nec/v25.c +++ b/src/emu/cpu/nec/v25.c @@ -1,5 +1,5 @@ // license:BSD-3-Clause -// copyright-holders:Bryan McPhail +// copyright-holders:Bryan McPhail, Alex W. Jackson /**************************************************************************** NEC V25/V35 emulator diff --git a/src/emu/cpu/nec/v25.h b/src/emu/cpu/nec/v25.h index c1113633897..41d55cc4fb8 100644 --- a/src/emu/cpu/nec/v25.h +++ b/src/emu/cpu/nec/v25.h @@ -1,5 +1,5 @@ // license:BSD-3-Clause -// copyright-holders:Bryan McPhail +// copyright-holders:Bryan McPhail, Alex W. Jackson /* ASG 971222 -- rewrote this interface */ #ifndef __NEC_V25_H_ #define __NEC_V25_H_ diff --git a/src/emu/cpu/nec/v25instr.h b/src/emu/cpu/nec/v25instr.h index 33b5aac3e12..5d878f24f2b 100644 --- a/src/emu/cpu/nec/v25instr.h +++ b/src/emu/cpu/nec/v25instr.h @@ -1,5 +1,5 @@ // license:BSD-3-Clause -// copyright-holders:Bryan McPhail +// copyright-holders:Bryan McPhail, Alex W. Jackson const v25_common_device::nec_ophandler v25_common_device::s_nec_instruction[256] = { &v25_common_device::i_add_br8, /* 0x00 */ diff --git a/src/emu/cpu/nec/v25instr.inc b/src/emu/cpu/nec/v25instr.inc index 8b88f163429..bd11b0626a8 100644 --- a/src/emu/cpu/nec/v25instr.inc +++ b/src/emu/cpu/nec/v25instr.inc @@ -1,5 +1,5 @@ // license:BSD-3-Clause -// copyright-holders:Bryan McPhail +// copyright-holders:Bryan McPhail, Alex W. Jackson #define GetRB \ ModRM = FETCH(); \ if (ModRM >= 0xc0) \ diff --git a/src/emu/cpu/nec/v25priv.h b/src/emu/cpu/nec/v25priv.h index a351d95b90d..19e8fcb7171 100644 --- a/src/emu/cpu/nec/v25priv.h +++ b/src/emu/cpu/nec/v25priv.h @@ -1,5 +1,5 @@ // license:BSD-3-Clause -// copyright-holders:Bryan McPhail +// copyright-holders:Bryan McPhail, Alex W. Jackson /* Cpu types, steps of 8 to help the cycle count calculation */ #define V33_TYPE 0 #define V30_TYPE 8 diff --git a/src/emu/cpu/nec/v25sfr.c b/src/emu/cpu/nec/v25sfr.c index 4a4592cf9f3..7e8afc8b39c 100644 --- a/src/emu/cpu/nec/v25sfr.c +++ b/src/emu/cpu/nec/v25sfr.c @@ -1,5 +1,5 @@ // license:BSD-3-Clause -// copyright-holders:Bryan McPhail +// copyright-holders:Bryan McPhail, Alex W. Jackson /**************************************************************************** NEC V25/V35 special function registers and internal ram access |