diff options
| author | 2014-07-21 01:02:07 +0000 | |
|---|---|---|
| committer | 2014-07-21 01:02:07 +0000 | |
| commit | 75ec5d59c32917edd34bb49592126782fe9cf19a (patch) | |
| tree | a5cbbffca397b2a42afc5b60cf55a17cdcf1d6d5 /src | |
| parent | fe0d66561a57ba3501019715e5f167f9f6c0766f (diff) | |
i386: this seemed to be the consensus, anyone else (judge, micko?) need adding? (nw)
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/cpu/i386/cycles.h | 3 | ||||
| -rw-r--r-- | src/emu/cpu/i386/i386.c | 2 | ||||
| -rw-r--r-- | src/emu/cpu/i386/i386.h | 2 | ||||
| -rw-r--r-- | src/emu/cpu/i386/i386dasm.c | 2 | ||||
| -rw-r--r-- | src/emu/cpu/i386/i386op16.inc | 2 | ||||
| -rw-r--r-- | src/emu/cpu/i386/i386op32.inc | 2 | ||||
| -rw-r--r-- | src/emu/cpu/i386/i386ops.h | 3 | ||||
| -rw-r--r-- | src/emu/cpu/i386/i386ops.inc | 2 | ||||
| -rw-r--r-- | src/emu/cpu/i386/i386priv.h | 2 | ||||
| -rw-r--r-- | src/emu/cpu/i386/i486ops.inc | 2 | ||||
| -rw-r--r-- | src/emu/cpu/i386/pentops.inc | 2 | ||||
| -rw-r--r-- | src/emu/cpu/i386/x87ops.inc | 2 |
12 files changed, 25 insertions, 1 deletions
diff --git a/src/emu/cpu/i386/cycles.h b/src/emu/cpu/i386/cycles.h index 62fcb8f20c1..e705b62b24c 100644 --- a/src/emu/cpu/i386/cycles.h +++ b/src/emu/cpu/i386/cycles.h @@ -1,3 +1,6 @@ +// license:BSD-3-Clause +// copyright-holders:Ville Linde, Barry Rodewald, Carl, Phil Bennett + #pragma once #ifndef __CYCLES_H__ diff --git a/src/emu/cpu/i386/i386.c b/src/emu/cpu/i386/i386.c index 790c0ef767b..e9b5a2f5645 100644 --- a/src/emu/cpu/i386/i386.c +++ b/src/emu/cpu/i386/i386.c @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Ville Linde, Barry Rodewald, Carl, Phil Bennett /* Intel 386 emulator diff --git a/src/emu/cpu/i386/i386.h b/src/emu/cpu/i386/i386.h index 0caa4bbc23a..7d6ebb07e1f 100644 --- a/src/emu/cpu/i386/i386.h +++ b/src/emu/cpu/i386/i386.h @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Ville Linde, Barry Rodewald, Carl, Phil Bennett #pragma once #ifndef __I386INTF_H__ diff --git a/src/emu/cpu/i386/i386dasm.c b/src/emu/cpu/i386/i386dasm.c index be98380d726..a82a92752ef 100644 --- a/src/emu/cpu/i386/i386dasm.c +++ b/src/emu/cpu/i386/i386dasm.c @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Ville Linde /* i386 Disassembler diff --git a/src/emu/cpu/i386/i386op16.inc b/src/emu/cpu/i386/i386op16.inc index c1a63195f16..81aaf8f025b 100644 --- a/src/emu/cpu/i386/i386op16.inc +++ b/src/emu/cpu/i386/i386op16.inc @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Ville Linde, Barry Rodewald, Carl, Phil Bennett UINT16 i386_device::i386_shift_rotate16(UINT8 modrm, UINT32 value, UINT8 shift) { UINT32 src = value & 0xffff; diff --git a/src/emu/cpu/i386/i386op32.inc b/src/emu/cpu/i386/i386op32.inc index c476103d49d..ea6a6ea5672 100644 --- a/src/emu/cpu/i386/i386op32.inc +++ b/src/emu/cpu/i386/i386op32.inc @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Ville Linde, Barry Rodewald, Carl, Phil Bennett UINT32 i386_device::i386_shift_rotate32(UINT8 modrm, UINT32 value, UINT8 shift) { UINT32 dst, src; diff --git a/src/emu/cpu/i386/i386ops.h b/src/emu/cpu/i386/i386ops.h index a30124b3132..4928363e2d2 100644 --- a/src/emu/cpu/i386/i386ops.h +++ b/src/emu/cpu/i386/i386ops.h @@ -1,4 +1,5 @@ - +// license:BSD-3-Clause +// copyright-holders:Ville Linde, Barry Rodewald, Carl, Phil Bennett #define OP_I386 0x1 #define OP_FPU 0x2 #define OP_I486 0x4 diff --git a/src/emu/cpu/i386/i386ops.inc b/src/emu/cpu/i386/i386ops.inc index b8b961e65a4..fa267b0c80a 100644 --- a/src/emu/cpu/i386/i386ops.inc +++ b/src/emu/cpu/i386/i386ops.inc @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Ville Linde, Barry Rodewald, Carl, Phil Bennett UINT8 i386_device::i386_shift_rotate8(UINT8 modrm, UINT32 value, UINT8 shift) { UINT32 src = value & 0xff; diff --git a/src/emu/cpu/i386/i386priv.h b/src/emu/cpu/i386/i386priv.h index 37b3c46927d..5c24b86d3e4 100644 --- a/src/emu/cpu/i386/i386priv.h +++ b/src/emu/cpu/i386/i386priv.h @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Ville Linde, Barry Rodewald, Carl, Phil Bennett #pragma once #ifndef __I386_H__ diff --git a/src/emu/cpu/i386/i486ops.inc b/src/emu/cpu/i386/i486ops.inc index 81d310b2c66..41806ff39d5 100644 --- a/src/emu/cpu/i386/i486ops.inc +++ b/src/emu/cpu/i386/i486ops.inc @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Ville Linde, Barry Rodewald, Carl, Phil Bennett // Intel 486+ specific opcodes void i386_device::i486_cpuid() // Opcode 0x0F A2 diff --git a/src/emu/cpu/i386/pentops.inc b/src/emu/cpu/i386/pentops.inc index b64e0d663af..101bad73c64 100644 --- a/src/emu/cpu/i386/pentops.inc +++ b/src/emu/cpu/i386/pentops.inc @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Ville Linde, Barry Rodewald, Carl, Phil Bennett // Pentium+ specific opcodes extern flag float32_is_nan( float32 a ); // since its not defined in softfloat.h diff --git a/src/emu/cpu/i386/x87ops.inc b/src/emu/cpu/i386/x87ops.inc index 1b991aea4ba..0b0ebcfb21b 100644 --- a/src/emu/cpu/i386/x87ops.inc +++ b/src/emu/cpu/i386/x87ops.inc @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Phil Bennett /*************************************************************************** x87 FPU emulation |
