From 4abeeb4b72b7e6ea05cfca35cdba408aa1cae584 Mon Sep 17 00:00:00 2001 From: emudave Date: Tue, 8 Feb 2011 15:06:00 +0000 Subject: [PATCH] license info added to Pico directory --- Pico/Area.cpp | 7 +++++++ Pico/Cart.cpp | 7 +++++++ Pico/Disa.c | 7 +++++++ Pico/Disa.h | 7 +++++++ Pico/Draw.cpp | 7 +++++++ Pico/MakeSine.cpp | 7 +++++++ Pico/Memory.cpp | 7 +++++++ Pico/Pico.cpp | 7 +++++++ Pico/Pico.h | 1 - Pico/PicoInt.h | 7 +++++++ Pico/Profile.cpp | 7 +++++++ Pico/Psnd.cpp | 7 +++++++ Pico/Sek.cpp | 7 +++++++ Pico/Utils.cpp | 7 +++++++ Pico/VideoPort.cpp | 7 +++++++ Pico/driver.h | 8 ++++++++ 16 files changed, 106 insertions(+), 1 deletion(-) diff --git a/Pico/Area.cpp b/Pico/Area.cpp index b0d2fb5..8c0c6d2 100644 --- a/Pico/Area.cpp +++ b/Pico/Area.cpp @@ -1,4 +1,11 @@ +// This file is part of the PicoDrive Megadrive Emulator + +// This code is licensed under the GNU General Public License version 2.0 and the MAME License. +// You can choose the license that has the most advantages for you. + +// SVN repository can be found at http://code.google.com/p/cyclone68000/ + #include "PicoInt.h" int (*PicoAcb)(struct PicoArea *)=NULL; // Area callback for each block of memory diff --git a/Pico/Cart.cpp b/Pico/Cart.cpp index e7b81c1..af79340 100644 --- a/Pico/Cart.cpp +++ b/Pico/Cart.cpp @@ -1,4 +1,11 @@ +// This file is part of the PicoDrive Megadrive Emulator + +// This code is licensed under the GNU General Public License version 2.0 and the MAME License. +// You can choose the license that has the most advantages for you. + +// SVN repository can be found at http://code.google.com/p/cyclone68000/ + #include "PicoInt.h" static void Byteswap(unsigned char *data,int len) diff --git a/Pico/Disa.c b/Pico/Disa.c index b08f204..773a3ba 100644 --- a/Pico/Disa.c +++ b/Pico/Disa.c @@ -1,4 +1,11 @@ +// This file is part of the PicoDrive Megadrive Emulator + +// This code is licensed under the GNU General Public License version 2.0 and the MAME License. +// You can choose the license that has the most advantages for you. + +// SVN repository can be found at http://code.google.com/p/cyclone68000/ + // Disa 68000 Disassembler #ifndef __GNUC__ #pragma warning(disable:4115) diff --git a/Pico/Disa.h b/Pico/Disa.h index fe54749..5b9072d 100644 --- a/Pico/Disa.h +++ b/Pico/Disa.h @@ -1,4 +1,11 @@ +// This file is part of the PicoDrive Megadrive Emulator + +// This code is licensed under the GNU General Public License version 2.0 and the MAME License. +// You can choose the license that has the most advantages for you. + +// SVN repository can be found at http://code.google.com/p/cyclone68000/ + // Disa 68000 Disassembler #ifdef __cplusplus diff --git a/Pico/Draw.cpp b/Pico/Draw.cpp index d9fdb02..50c5d64 100644 --- a/Pico/Draw.cpp +++ b/Pico/Draw.cpp @@ -1,4 +1,11 @@ +// This file is part of the PicoDrive Megadrive Emulator + +// This code is licensed under the GNU General Public License version 2.0 and the MAME License. +// You can choose the license that has the most advantages for you. + +// SVN repository can be found at http://code.google.com/p/cyclone68000/ + #include "PicoInt.h" #ifndef __GNUC__ #pragma warning (disable:4706) // Disable assignment with conditional diff --git a/Pico/MakeSine.cpp b/Pico/MakeSine.cpp index 610cb0a..63ab5d2 100644 --- a/Pico/MakeSine.cpp +++ b/Pico/MakeSine.cpp @@ -1,4 +1,11 @@ +// This file is part of the PicoDrive Megadrive Emulator + +// This code is licensed under the GNU General Public License version 2.0 and the MAME License. +// You can choose the license that has the most advantages for you. + +// SVN repository can be found at http://code.google.com/p/cyclone68000/ + // Make a Sine table #pragma warning (disable:4514) diff --git a/Pico/Memory.cpp b/Pico/Memory.cpp index 64c1815..92f72cc 100644 --- a/Pico/Memory.cpp +++ b/Pico/Memory.cpp @@ -1,4 +1,11 @@ +// This file is part of the PicoDrive Megadrive Emulator + +// This code is licensed under the GNU General Public License version 2.0 and the MAME License. +// You can choose the license that has the most advantages for you. + +// SVN repository can be found at http://code.google.com/p/cyclone68000/ + #include "PicoInt.h" typedef unsigned char u8; diff --git a/Pico/Pico.cpp b/Pico/Pico.cpp index 7acc937..e006ea2 100644 --- a/Pico/Pico.cpp +++ b/Pico/Pico.cpp @@ -1,4 +1,11 @@ +// This file is part of the PicoDrive Megadrive Emulator + +// This code is licensed under the GNU General Public License version 2.0 and the MAME License. +// You can choose the license that has the most advantages for you. + +// SVN repository can be found at http://code.google.com/p/cyclone68000/ + #include "PicoInt.h" int PicoVer=0x0030; diff --git a/Pico/Pico.h b/Pico/Pico.h index f7214bb..4892fc4 100644 --- a/Pico/Pico.h +++ b/Pico/Pico.h @@ -8,7 +8,6 @@ // SVN repository can be found at http://code.google.com/p/cyclone68000/ - #ifdef __cplusplus extern "C" { #endif diff --git a/Pico/PicoInt.h b/Pico/PicoInt.h index a27e73a..addd322 100644 --- a/Pico/PicoInt.h +++ b/Pico/PicoInt.h @@ -1,4 +1,11 @@ +// This file is part of the PicoDrive Megadrive Emulator + +// This code is licensed under the GNU General Public License version 2.0 and the MAME License. +// You can choose the license that has the most advantages for you. + +// SVN repository can be found at http://code.google.com/p/cyclone68000/ + #include #include #include diff --git a/Pico/Profile.cpp b/Pico/Profile.cpp index a1fba7f..ff4fb11 100644 --- a/Pico/Profile.cpp +++ b/Pico/Profile.cpp @@ -1,4 +1,11 @@ +// This file is part of the PicoDrive Megadrive Emulator + +// This code is licensed under the GNU General Public License version 2.0 and the MAME License. +// You can choose the license that has the most advantages for you. + +// SVN repository can be found at http://code.google.com/p/cyclone68000/ + #include "PicoInt.h" #ifdef _WIN32_WCE diff --git a/Pico/Psnd.cpp b/Pico/Psnd.cpp index 235f7da..cc5f0fa 100644 --- a/Pico/Psnd.cpp +++ b/Pico/Psnd.cpp @@ -1,4 +1,11 @@ +// This file is part of the PicoDrive Megadrive Emulator + +// This code is licensed under the GNU General Public License version 2.0 and the MAME License. +// You can choose the license that has the most advantages for you. + +// SVN repository can be found at http://code.google.com/p/cyclone68000/ + #include "PicoInt.h" #ifdef MSOUND diff --git a/Pico/Sek.cpp b/Pico/Sek.cpp index f88b9be..b9d64a3 100644 --- a/Pico/Sek.cpp +++ b/Pico/Sek.cpp @@ -1,4 +1,11 @@ +// This file is part of the PicoDrive Megadrive Emulator + +// This code is licensed under the GNU General Public License version 2.0 and the MAME License. +// You can choose the license that has the most advantages for you. + +// SVN repository can be found at http://code.google.com/p/cyclone68000/ + #include "PicoInt.h" char PicoStatus[128]=""; // 68000 state for debug diff --git a/Pico/Utils.cpp b/Pico/Utils.cpp index a07e9c6..ff0b111 100644 --- a/Pico/Utils.cpp +++ b/Pico/Utils.cpp @@ -1,4 +1,11 @@ +// This file is part of the PicoDrive Megadrive Emulator + +// This code is licensed under the GNU General Public License version 2.0 and the MAME License. +// You can choose the license that has the most advantages for you. + +// SVN repository can be found at http://code.google.com/p/cyclone68000/ + #include "PicoInt.h" int PicuAnd=0xf7de; diff --git a/Pico/VideoPort.cpp b/Pico/VideoPort.cpp index 322e6c2..e5ba099 100644 --- a/Pico/VideoPort.cpp +++ b/Pico/VideoPort.cpp @@ -1,4 +1,11 @@ +// This file is part of the PicoDrive Megadrive Emulator + +// This code is licensed under the GNU General Public License version 2.0 and the MAME License. +// You can choose the license that has the most advantages for you. + +// SVN repository can be found at http://code.google.com/p/cyclone68000/ + #include "PicoInt.h" static inline void AutoIncrement() diff --git a/Pico/driver.h b/Pico/driver.h index 28889d4..4070650 100644 --- a/Pico/driver.h +++ b/Pico/driver.h @@ -1,3 +1,11 @@ + +// This file is part of the PicoDrive Megadrive Emulator + +// This code is licensed under the GNU General Public License version 2.0 and the MAME License. +// You can choose the license that has the most advantages for you. + +// SVN repository can be found at http://code.google.com/p/cyclone68000/ + // Drive filler file for ym2612.c #undef INLINE #define INLINE __inline -- 2.39.2