From 1dd0fd0212a268556a47216021cbd99a27efe045 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Wed, 16 Oct 2013 12:31:50 +0000 Subject: [PATCH] Marking some of my core files (nw) --- src/emu/cpu/i4004/4004dasm.c | 4 ++-- src/emu/cpu/i4004/i4004.c | 4 ++-- src/emu/cpu/i4004/i4004.h | 2 ++ src/emu/cpu/i8008/8008dasm.c | 4 ++-- src/emu/cpu/i8008/i8008.c | 4 ++-- src/emu/cpu/i8008/i8008.h | 2 ++ src/emu/cpu/pps4/pps4.c | 4 ++-- src/emu/cpu/pps4/pps4.h | 2 ++ src/emu/cpu/pps4/pps4dasm.c | 4 ++-- src/emu/cpu/scmp/scmp.c | 4 ++-- src/emu/cpu/scmp/scmp.h | 2 ++ src/emu/cpu/scmp/scmpdasm.c | 4 ++-- src/emu/dislot.c | 2 ++ src/emu/dislot.h | 2 ++ src/emu/luaengine.c | 33 ++------------------------------- src/emu/luaengine.h | 33 ++------------------------------- src/emu/webengine.c | 33 ++------------------------------- src/emu/webengine.h | 33 ++------------------------------- src/mess/tools/castool/main.c | 2 ++ src/mess/tools/floptool/main.c | 2 ++ 20 files changed, 40 insertions(+), 140 deletions(-) diff --git a/src/emu/cpu/i4004/4004dasm.c b/src/emu/cpu/i4004/4004dasm.c index 82675df7186..2e76c14b3b5 100644 --- a/src/emu/cpu/i4004/4004dasm.c +++ b/src/emu/cpu/i4004/4004dasm.c @@ -1,11 +1,11 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic /***************************************************************************** * * 4004dasm.c * * Intel 4004 CPU Disassembly * - * Initial version by Miodrag Milanovic - * *****************************************************************************/ #include "emu.h" diff --git a/src/emu/cpu/i4004/i4004.c b/src/emu/cpu/i4004/i4004.c index 7d508d4e36e..faadf2198d5 100644 --- a/src/emu/cpu/i4004/i4004.c +++ b/src/emu/cpu/i4004/i4004.c @@ -1,11 +1,11 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic /***************************************************************************** * * i4004.c * * Intel 4004 CPU * - * Initial version by Miodrag Milanovic - * *****************************************************************************/ #include "emu.h" #include "debugger.h" diff --git a/src/emu/cpu/i4004/i4004.h b/src/emu/cpu/i4004/i4004.h index dc8195f3524..85bda98f6ea 100644 --- a/src/emu/cpu/i4004/i4004.h +++ b/src/emu/cpu/i4004/i4004.h @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic #ifndef __I4004_H__ #define __I4004_H__ diff --git a/src/emu/cpu/i8008/8008dasm.c b/src/emu/cpu/i8008/8008dasm.c index f14f4b7829d..d5f1e082d5e 100644 --- a/src/emu/cpu/i8008/8008dasm.c +++ b/src/emu/cpu/i8008/8008dasm.c @@ -1,11 +1,11 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic /***************************************************************************** * * 8008dasm.c * * Intel 8008 CPU Disassembly * - * Initial version by Miodrag Milanovic - * *****************************************************************************/ #include "emu.h" diff --git a/src/emu/cpu/i8008/i8008.c b/src/emu/cpu/i8008/i8008.c index ba9e66d5fce..73cd80f0c66 100644 --- a/src/emu/cpu/i8008/i8008.c +++ b/src/emu/cpu/i8008/i8008.c @@ -1,11 +1,11 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic /***************************************************************************** * * i8008.c * * Intel 8008 CPU * - * Initial version by Miodrag Milanovic - * *****************************************************************************/ #include "emu.h" #include "debugger.h" diff --git a/src/emu/cpu/i8008/i8008.h b/src/emu/cpu/i8008/i8008.h index 4c19faab93e..bb2eaceb9fa 100644 --- a/src/emu/cpu/i8008/i8008.h +++ b/src/emu/cpu/i8008/i8008.h @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic #ifndef __I8008_H__ #define __I8008_H__ diff --git a/src/emu/cpu/pps4/pps4.c b/src/emu/cpu/pps4/pps4.c index 84ace009839..5144b8d50a0 100644 --- a/src/emu/cpu/pps4/pps4.c +++ b/src/emu/cpu/pps4/pps4.c @@ -1,11 +1,11 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic /***************************************************************************** * * pps4.c * * Rockwell PPS-4 CPU * - * Initial version by Miodrag Milanovic - * *****************************************************************************/ #include "emu.h" #include "debugger.h" diff --git a/src/emu/cpu/pps4/pps4.h b/src/emu/cpu/pps4/pps4.h index 1b4d687b8ff..1fa8f7dc377 100644 --- a/src/emu/cpu/pps4/pps4.h +++ b/src/emu/cpu/pps4/pps4.h @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic #ifndef __PPS4_H__ #define __PPS4_H__ diff --git a/src/emu/cpu/pps4/pps4dasm.c b/src/emu/cpu/pps4/pps4dasm.c index 9b5632ea2bf..f3cb664f0e9 100644 --- a/src/emu/cpu/pps4/pps4dasm.c +++ b/src/emu/cpu/pps4/pps4dasm.c @@ -1,11 +1,11 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic /***************************************************************************** * * pps4dasm.c * * Rockwell PPS-4 CPU Disassembly * - * Initial version by Miodrag Milanovic - * *****************************************************************************/ #include "emu.h" diff --git a/src/emu/cpu/scmp/scmp.c b/src/emu/cpu/scmp/scmp.c index d6b43858ac5..402369d4515 100644 --- a/src/emu/cpu/scmp/scmp.c +++ b/src/emu/cpu/scmp/scmp.c @@ -1,11 +1,11 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic /***************************************************************************** * * scmp.c * * National Semiconductor SC/MP CPU Disassembly * - * Initial version by Miodrag Milanovic - * *****************************************************************************/ #include "emu.h" diff --git a/src/emu/cpu/scmp/scmp.h b/src/emu/cpu/scmp/scmp.h index bfcbb894b70..d5ac880587f 100644 --- a/src/emu/cpu/scmp/scmp.h +++ b/src/emu/cpu/scmp/scmp.h @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic #ifndef __SCMP_H__ #define __SCMP_H__ diff --git a/src/emu/cpu/scmp/scmpdasm.c b/src/emu/cpu/scmp/scmpdasm.c index 7d93498b91e..f8bcc491ce4 100644 --- a/src/emu/cpu/scmp/scmpdasm.c +++ b/src/emu/cpu/scmp/scmpdasm.c @@ -1,11 +1,11 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic /***************************************************************************** * * scmpdasm.c * * National Semiconductor SC/MP CPU Disassembly * - * Initial version by Miodrag Milanovic - * *****************************************************************************/ #include "emu.h" diff --git a/src/emu/dislot.c b/src/emu/dislot.c index 47ecf4896c5..f15172d4d01 100644 --- a/src/emu/dislot.c +++ b/src/emu/dislot.c @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic /*************************************************************************** Slot device diff --git a/src/emu/dislot.h b/src/emu/dislot.h index 0fc93237e64..f37890e9c16 100644 --- a/src/emu/dislot.h +++ b/src/emu/dislot.h @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic #pragma once #ifndef __EMU_H__ diff --git a/src/emu/luaengine.c b/src/emu/luaengine.c index ba220907276..d5ea307289c 100644 --- a/src/emu/luaengine.c +++ b/src/emu/luaengine.c @@ -1,40 +1,11 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic /*************************************************************************** luaengine.c Controls execution of the core MAME system. -**************************************************************************** - - Copyright Miodrag Milanovic - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - * Neither the name 'MAME' nor the names of its contributors may be - used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY MIODRAG MILANOVIC ''AS IS'' AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL MIODRAG MILANOVIC BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING - IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - ***************************************************************************/ #include "emu.h" diff --git a/src/emu/luaengine.h b/src/emu/luaengine.h index 6bf2217cc75..2ce3872396b 100644 --- a/src/emu/luaengine.h +++ b/src/emu/luaengine.h @@ -1,40 +1,11 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic /*************************************************************************** luaengine.h Controls execution of the core MAME system. -**************************************************************************** - - Copyright Miodrag Milanovic - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - * Neither the name 'MAME' nor the names of its contributors may be - used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY MIODRAG MILANOVIC ''AS IS'' AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL MIODRAG MILANOVIC BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING - IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - ***************************************************************************/ #pragma once diff --git a/src/emu/webengine.c b/src/emu/webengine.c index 64cd080a7fc..e2d1ae3d28e 100644 --- a/src/emu/webengine.c +++ b/src/emu/webengine.c @@ -1,40 +1,11 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic /*************************************************************************** webengine.c Handle MAME internal web server. -**************************************************************************** - - Copyright Miodrag Milanovic - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - * Neither the name 'MAME' nor the names of its contributors may be - used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY MIODRAG MILANOVIC ''AS IS'' AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL MIODRAG MILANOVIC BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING - IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - ***************************************************************************/ #include "emu.h" diff --git a/src/emu/webengine.h b/src/emu/webengine.h index 89db9d99c20..fa1f1a30770 100644 --- a/src/emu/webengine.h +++ b/src/emu/webengine.h @@ -1,40 +1,11 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic /*************************************************************************** webengine.h Handle MAME internal web server. -**************************************************************************** - - Copyright Miodrag Milanovic - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - * Neither the name 'MAME' nor the names of its contributors may be - used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY MIODRAG MILANOVIC ''AS IS'' AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL MIODRAG MILANOVIC BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING - IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - ***************************************************************************/ #pragma once diff --git a/src/mess/tools/castool/main.c b/src/mess/tools/castool/main.c index 6b6baefa8f1..d29ba64f3ff 100644 --- a/src/mess/tools/castool/main.c +++ b/src/mess/tools/castool/main.c @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic /*************************************************************************** main.c diff --git a/src/mess/tools/floptool/main.c b/src/mess/tools/floptool/main.c index 9c55ffc6647..4f129c4b99c 100644 --- a/src/mess/tools/floptool/main.c +++ b/src/mess/tools/floptool/main.c @@ -1,3 +1,5 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic /*************************************************************************** main.c