summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortwinaphex2016-10-15 13:20:14 +0200
committertwinaphex2016-10-15 13:20:14 +0200
commitbb0fecf54bff6b2754f03cc0b9142386d02dcb04 (patch)
treee2a32e0191c3f456bbe39060fbd3db183433673d /src
parentf6f1c5fddb6bcd21600a44fb1d9636a6b606d5f2 (diff)
downloadsnes9x2002-bb0fecf54bff6b2754f03cc0b9142386d02dcb04.tar.gz
snes9x2002-bb0fecf54bff6b2754f03cc0b9142386d02dcb04.tar.bz2
snes9x2002-bb0fecf54bff6b2754f03cc0b9142386d02dcb04.zip
Adding copyright notices since certain predatory scumbags think
they can play games and demoralize open source creators with their hustling tactics (NO MEANS NO BTW - DON'T BOTHER EVER SENDING E-MAILS ASKING TO GIVE RIGHTS FOR MONEY!!!!! This goes out to you Nostalgames!)
Diffstat (limited to 'src')
-rw-r--r--src/65c816.h3
-rw-r--r--src/DSP1_gp32.c3
-rw-r--r--src/apu.c4
-rw-r--r--src/c4.c4
-rw-r--r--src/c4emu.c3
-rw-r--r--src/cheats.c3
-rw-r--r--src/cheats2.c3
-rw-r--r--src/clip.c3
-rw-r--r--src/cpu.c3
-rw-r--r--src/cpuexec.c3
-rw-r--r--src/cpuops.c3
-rw-r--r--src/data.c3
-rw-r--r--src/dma.c3
-rw-r--r--src/dsp1.c4
-rw-r--r--src/dsp2emu.c2
-rw-r--r--src/fxemu.c2
-rw-r--r--src/fxinst.c2
-rw-r--r--src/gfx.c3
-rw-r--r--src/gfx16.c3
-rw-r--r--src/globals.c3
-rw-r--r--src/memmap.c3
-rw-r--r--src/pixform.h3
-rw-r--r--src/port.h3
-rw-r--r--src/ppu.c3
-rw-r--r--src/ppu_.c3
-rw-r--r--src/sa1.c3
-rw-r--r--src/sa1cpu.c3
-rw-r--r--src/sdd1.c3
-rw-r--r--src/sdd1emu.c3
-rw-r--r--src/seta.c2
-rw-r--r--src/seta010.c3
-rw-r--r--src/seta011.c2
-rw-r--r--src/seta018.c2
-rw-r--r--src/snapshot.c3
-rw-r--r--src/soundux.c3
-rw-r--r--src/spc700.c3
-rw-r--r--src/srtc.c3
-rw-r--r--src/tile.c3
-rw-r--r--src/tile16.c3
-rw-r--r--src/tile16add.c3
-rw-r--r--src/tile16add1_2.c3
-rw-r--r--src/tile16fadd1_2.c3
-rw-r--r--src/tile16fsub1_2.c3
-rw-r--r--src/tile16noprio.c3
-rw-r--r--src/tile16sub.c3
-rw-r--r--src/tile16sub1_2.c3
46 files changed, 131 insertions, 4 deletions
diff --git a/src/65c816.h b/src/65c816.h
index fe040c6..55c1dc2 100644
--- a/src/65c816.h
+++ b/src/65c816.h
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/DSP1_gp32.c b/src/DSP1_gp32.c
index aa203f8..917e45d 100644
--- a/src/DSP1_gp32.c
+++ b/src/DSP1_gp32.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/apu.c b/src/apu.c
index fb7f6ed..98d3a9e 100644
--- a/src/apu.c
+++ b/src/apu.c
@@ -7,6 +7,10 @@
* Super FX C emulator code
* (c) Copyright 1997 - 1999 Ivar (ivar@snes9x.com) and
* Gary Henderson.
+ *
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* Super FX assembler emulator code (c) Copyright 1998 zsKnight and _Demo_.
*
* DSP1 emulator code (c) Copyright 1998 Ivar, _Demo_ and Gary Henderson.
diff --git a/src/c4.c b/src/c4.c
index e7d8ce8..060b642 100644
--- a/src/c4.c
+++ b/src/c4.c
@@ -44,8 +44,8 @@
Super FX C emulator code
(c) Copyright 1997 - 1999 Ivar and Gary Henderson.
-
-
+ (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
Specific ports contains the works of other authors. See headers in
individual files.
diff --git a/src/c4emu.c b/src/c4emu.c
index 5e98b72..bec8364 100644
--- a/src/c4emu.c
+++ b/src/c4emu.c
@@ -44,7 +44,8 @@
Super FX C emulator code
(c) Copyright 1997 - 1999 Ivar and Gary Henderson.
-
+ (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
Specific ports contains the works of other authors. See headers in
diff --git a/src/cheats.c b/src/cheats.c
index 27ee131..d614185 100644
--- a/src/cheats.c
+++ b/src/cheats.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/cheats2.c b/src/cheats2.c
index b0c6b30..623a6e3 100644
--- a/src/cheats2.c
+++ b/src/cheats2.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/clip.c b/src/clip.c
index 6720efb..66d6964 100644
--- a/src/clip.c
+++ b/src/clip.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/cpu.c b/src/cpu.c
index 438d9b8..f8e5e10 100644
--- a/src/cpu.c
+++ b/src/cpu.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/cpuexec.c b/src/cpuexec.c
index d7d6fa2..ad7b254 100644
--- a/src/cpuexec.c
+++ b/src/cpuexec.c
@@ -16,6 +16,9 @@
* DOS port code contains the works of other authors. See headers in
* individual files.
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* Snes9x homepage: http://www.snes9x.com
*
* Permission to use, copy, modify and distribute Snes9x in both binary and
diff --git a/src/cpuops.c b/src/cpuops.c
index 533d2f6..b87bd66 100644
--- a/src/cpuops.c
+++ b/src/cpuops.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/data.c b/src/data.c
index de6eee7..8047daf 100644
--- a/src/data.c
+++ b/src/data.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/dma.c b/src/dma.c
index 27325bd..4aaff99 100644
--- a/src/dma.c
+++ b/src/dma.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/dsp1.c b/src/dsp1.c
index 30fb466..5287575 100644
--- a/src/dsp1.c
+++ b/src/dsp1.c
@@ -60,6 +60,8 @@
SH assembler code partly based on x86 assembler code
(c) Copyright 2002 - 2004 Marcus Comstedt (marcus@mc.pp.se)
+ (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
Specific ports contains the works of other authors. See headers in
individual files.
@@ -1261,4 +1263,4 @@ uint8 DSP4GetByte(uint16 address)
return t;
}
-*/ \ No newline at end of file
+*/
diff --git a/src/dsp2emu.c b/src/dsp2emu.c
index ba48368..5e8630c 100644
--- a/src/dsp2emu.c
+++ b/src/dsp2emu.c
@@ -60,6 +60,8 @@
SH assembler code partly based on x86 assembler code
(c) Copyright 2002 - 2004 Marcus Comstedt (marcus@mc.pp.se)
+ (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
Specific ports contains the works of other authors. See headers in
individual files.
diff --git a/src/fxemu.c b/src/fxemu.c
index 9880738..8cd2b66 100644
--- a/src/fxemu.c
+++ b/src/fxemu.c
@@ -60,6 +60,8 @@
SH assembler code partly based on x86 assembler code
(c) Copyright 2002 - 2004 Marcus Comstedt (marcus@mc.pp.se)
+ (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
Specific ports contains the works of other authors. See headers in
individual files.
diff --git a/src/fxinst.c b/src/fxinst.c
index 9c178fe..527d13b 100644
--- a/src/fxinst.c
+++ b/src/fxinst.c
@@ -60,6 +60,8 @@
SH assembler code partly based on x86 assembler code
(c) Copyright 2002 - 2004 Marcus Comstedt (marcus@mc.pp.se)
+ (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
Specific ports contains the works of other authors. See headers in
individual files.
diff --git a/src/gfx.c b/src/gfx.c
index 753af4c..f7be1da 100644
--- a/src/gfx.c
+++ b/src/gfx.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/gfx16.c b/src/gfx16.c
index 4aa7929..5c520f5 100644
--- a/src/gfx16.c
+++ b/src/gfx16.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/globals.c b/src/globals.c
index 1263298..cc60f25 100644
--- a/src/globals.c
+++ b/src/globals.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/memmap.c b/src/memmap.c
index 26a9889..d72cea0 100644
--- a/src/memmap.c
+++ b/src/memmap.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/pixform.h b/src/pixform.h
index d7838de..f7e5e7a 100644
--- a/src/pixform.h
+++ b/src/pixform.h
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/port.h b/src/port.h
index 43dd864..20cb69b 100644
--- a/src/port.h
+++ b/src/port.h
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/ppu.c b/src/ppu.c
index 79d891c..27bedbb 100644
--- a/src/ppu.c
+++ b/src/ppu.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/ppu_.c b/src/ppu_.c
index d8bbcf5..e68efec 100644
--- a/src/ppu_.c
+++ b/src/ppu_.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/sa1.c b/src/sa1.c
index 22dab0a..582a7a8 100644
--- a/src/sa1.c
+++ b/src/sa1.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/sa1cpu.c b/src/sa1cpu.c
index 3207f91..5f31771 100644
--- a/src/sa1cpu.c
+++ b/src/sa1cpu.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/sdd1.c b/src/sdd1.c
index d960965..e02172e 100644
--- a/src/sdd1.c
+++ b/src/sdd1.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/sdd1emu.c b/src/sdd1emu.c
index c7005ec..3f178a5 100644
--- a/src/sdd1emu.c
+++ b/src/sdd1emu.c
@@ -60,6 +60,9 @@
SH assembler code partly based on x86 assembler code
(c) Copyright 2002 - 2004 Marcus Comstedt (marcus@mc.pp.se)
+ (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+
Specific ports contains the works of other authors. See headers in
individual files.
diff --git a/src/seta.c b/src/seta.c
index 047c009..7b306c5 100644
--- a/src/seta.c
+++ b/src/seta.c
@@ -60,6 +60,8 @@
SH assembler code partly based on x86 assembler code
(c) Copyright 2002 - 2004 Marcus Comstedt (marcus@mc.pp.se)
+ (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
Specific ports contains the works of other authors. See headers in
individual files.
diff --git a/src/seta010.c b/src/seta010.c
index 444f739..483520a 100644
--- a/src/seta010.c
+++ b/src/seta010.c
@@ -60,6 +60,9 @@
SH assembler code partly based on x86 assembler code
(c) Copyright 2002 - 2004 Marcus Comstedt (marcus@mc.pp.se)
+ (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+
Specific ports contains the works of other authors. See headers in
individual files.
diff --git a/src/seta011.c b/src/seta011.c
index f033c4a..9d353d3 100644
--- a/src/seta011.c
+++ b/src/seta011.c
@@ -60,6 +60,8 @@
SH assembler code partly based on x86 assembler code
(c) Copyright 2002 - 2004 Marcus Comstedt (marcus@mc.pp.se)
+ (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
Specific ports contains the works of other authors. See headers in
individual files.
diff --git a/src/seta018.c b/src/seta018.c
index 43195a4..ba6e7c5 100644
--- a/src/seta018.c
+++ b/src/seta018.c
@@ -60,6 +60,8 @@
SH assembler code partly based on x86 assembler code
(c) Copyright 2002 - 2004 Marcus Comstedt (marcus@mc.pp.se)
+ (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
Specific ports contains the works of other authors. See headers in
individual files.
diff --git a/src/snapshot.c b/src/snapshot.c
index fd7e989..47e9e16 100644
--- a/src/snapshot.c
+++ b/src/snapshot.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/soundux.c b/src/soundux.c
index 9c704fd..af037f1 100644
--- a/src/soundux.c
+++ b/src/soundux.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/spc700.c b/src/spc700.c
index 13fa1eb..5a74eda 100644
--- a/src/spc700.c
+++ b/src/spc700.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/srtc.c b/src/srtc.c
index 05aa6c9..81f7bfe 100644
--- a/src/srtc.c
+++ b/src/srtc.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/tile.c b/src/tile.c
index 2a44bee..0be6489 100644
--- a/src/tile.c
+++ b/src/tile.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/tile16.c b/src/tile16.c
index b325f25..1ee7cd6 100644
--- a/src/tile16.c
+++ b/src/tile16.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/tile16add.c b/src/tile16add.c
index e21516d..2114e87 100644
--- a/src/tile16add.c
+++ b/src/tile16add.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/tile16add1_2.c b/src/tile16add1_2.c
index 75b9aea..00116a2 100644
--- a/src/tile16add1_2.c
+++ b/src/tile16add1_2.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/tile16fadd1_2.c b/src/tile16fadd1_2.c
index 1a3acce..fd9f5a9 100644
--- a/src/tile16fadd1_2.c
+++ b/src/tile16fadd1_2.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/tile16fsub1_2.c b/src/tile16fsub1_2.c
index 1124001..e6d63e0 100644
--- a/src/tile16fsub1_2.c
+++ b/src/tile16fsub1_2.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/tile16noprio.c b/src/tile16noprio.c
index 6074f37..cce7d34 100644
--- a/src/tile16noprio.c
+++ b/src/tile16noprio.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/tile16sub.c b/src/tile16sub.c
index 8ffae79..06e6279 100644
--- a/src/tile16sub.c
+++ b/src/tile16sub.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*
diff --git a/src/tile16sub1_2.c b/src/tile16sub1_2.c
index ece0d76..a8e36a7 100644
--- a/src/tile16sub1_2.c
+++ b/src/tile16sub1_2.c
@@ -13,6 +13,9 @@
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
+ * (c) Copyright 2014 - 2016 Daniel De Matteis. (UNDER NO CIRCUMSTANCE
+ * WILL COMMERCIAL RIGHTS EVER BE APPROPRIATED TO ANY PARTY)
+ *
* DOS port code contains the works of other authors. See headers in
* individual files.
*