summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emu/machine/i8271.c2
-rw-r--r--src/emu/machine/i8271.h2
-rw-r--r--src/emu/sound/beep.c2
-rw-r--r--src/emu/sound/beep.h2
-rw-r--r--src/lib/formats/oric_tap.c2
-rw-r--r--src/lib/formats/oric_tap.h2
-rw-r--r--src/mess/drivers/amstrad.c2
-rw-r--r--src/mess/drivers/avigo.c2
-rw-r--r--src/mess/drivers/kc.c2
-rw-r--r--src/mess/drivers/nc.c2
-rw-r--r--src/mess/drivers/pcw.c2
-rw-r--r--src/mess/drivers/pcw16.c2
-rw-r--r--src/mess/drivers/sorcerer.c2
-rw-r--r--src/mess/drivers/spec128.c2
-rw-r--r--src/mess/drivers/specpls3.c2
-rw-r--r--src/mess/drivers/spectrum.c2
-rw-r--r--src/mess/drivers/timex.c2
-rw-r--r--src/mess/drivers/z88.c2
-rw-r--r--src/mess/includes/amstrad.h2
-rw-r--r--src/mess/includes/avigo.h2
-rw-r--r--src/mess/includes/kc.h2
-rw-r--r--src/mess/includes/nc.h2
-rw-r--r--src/mess/includes/pcw.h2
-rw-r--r--src/mess/includes/pcw16.h2
-rw-r--r--src/mess/includes/sorcerer.h2
-rw-r--r--src/mess/includes/spectrum.h2
-rw-r--r--src/mess/includes/z88.h2
-rw-r--r--src/mess/machine/amstrad.c2
-rw-r--r--src/mess/machine/kc.c2
-rw-r--r--src/mess/machine/kc_keyb.c2
-rw-r--r--src/mess/machine/kc_keyb.h2
-rw-r--r--src/mess/machine/nc.c2
-rw-r--r--src/mess/machine/sorcerer.c2
-rw-r--r--src/mess/machine/spec_snqk.c2
-rw-r--r--src/mess/machine/spec_snqk.h2
-rw-r--r--src/mess/video/avigo.c2
-rw-r--r--src/mess/video/kc.c2
-rw-r--r--src/mess/video/nc.c2
-rw-r--r--src/mess/video/pcw.c2
-rw-r--r--src/mess/video/pcw16.c2
-rw-r--r--src/mess/video/spectrum.c2
-rw-r--r--src/mess/video/timex.c2
-rw-r--r--src/mess/video/z88.c2
43 files changed, 43 insertions, 43 deletions
diff --git a/src/emu/machine/i8271.c b/src/emu/machine/i8271.c
index 1136a2b2202..08e5944f4fc 100644
--- a/src/emu/machine/i8271.c
+++ b/src/emu/machine/i8271.c
@@ -1,4 +1,4 @@
-// license:???
+// license:BSD-3-Clause
// copyright-holders:Kevin Thacker
/* Intel 8271 Floppy Disc Controller */
/* used in BBC Micro B,Acorn Atom */
diff --git a/src/emu/machine/i8271.h b/src/emu/machine/i8271.h
index 44ee8c26149..c73fb4b680c 100644
--- a/src/emu/machine/i8271.h
+++ b/src/emu/machine/i8271.h
@@ -1,4 +1,4 @@
-// license:???
+// license:BSD-3-Clause
// copyright-holders:Kevin Thacker
/*****************************************************************************
*
diff --git a/src/emu/sound/beep.c b/src/emu/sound/beep.c
index 56d618776b9..ce5558f3320 100644
--- a/src/emu/sound/beep.c
+++ b/src/emu/sound/beep.c
@@ -1,4 +1,4 @@
-// license:???
+// license:BSD-3-Clause
// copyright-holders:Kevin Thacker
/***************************************************************************
diff --git a/src/emu/sound/beep.h b/src/emu/sound/beep.h
index 6a8287cf107..4b587bd3c89 100644
--- a/src/emu/sound/beep.h
+++ b/src/emu/sound/beep.h
@@ -1,4 +1,4 @@
-// license:???
+// license:BSD-3-Clause
// copyright-holders:Kevin Thacker
#pragma once
diff --git a/src/lib/formats/oric_tap.c b/src/lib/formats/oric_tap.c
index f163aaaff47..9dbf378db9b 100644
--- a/src/lib/formats/oric_tap.c
+++ b/src/lib/formats/oric_tap.c
@@ -1,4 +1,4 @@
-// license:???
+// license:BSD-3-Clause
// copyright-holders:Kevin Thacker
#include <assert.h>
diff --git a/src/lib/formats/oric_tap.h b/src/lib/formats/oric_tap.h
index 43c3f2f86ea..d873495b220 100644
--- a/src/lib/formats/oric_tap.h
+++ b/src/lib/formats/oric_tap.h
@@ -1,4 +1,4 @@
-// license:???
+// license:BSD-3-Clause
// copyright-holders:Kevin Thacker
/*********************************************************************
diff --git a/src/mess/drivers/amstrad.c b/src/mess/drivers/amstrad.c
index 737d727da94..1ab281a4c46 100644
--- a/src/mess/drivers/amstrad.c
+++ b/src/mess/drivers/amstrad.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker, Barry Rodewald
/******************************************************************************
diff --git a/src/mess/drivers/avigo.c b/src/mess/drivers/avigo.c
index 84a176d84a8..6f5de43c06b 100644
--- a/src/mess/drivers/avigo.c
+++ b/src/mess/drivers/avigo.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker,Sandro Ronco
/******************************************************************************
diff --git a/src/mess/drivers/kc.c b/src/mess/drivers/kc.c
index 8c7d03cd120..5cf619f049a 100644
--- a/src/mess/drivers/kc.c
+++ b/src/mess/drivers/kc.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker,Sandro Ronco
/******************************************************************************
diff --git a/src/mess/drivers/nc.c b/src/mess/drivers/nc.c
index 10586d55368..fbdbbd1f8b8 100644
--- a/src/mess/drivers/nc.c
+++ b/src/mess/drivers/nc.c
@@ -1,4 +1,4 @@
-// license:BSD-3-Clause
+// license:GPL-2.0+
// copyright-holders:Wilbert Pol, Kevin Thacker
/******************************************************************************
diff --git a/src/mess/drivers/pcw.c b/src/mess/drivers/pcw.c
index 781a7fea664..27ac2a0fcd4 100644
--- a/src/mess/drivers/pcw.c
+++ b/src/mess/drivers/pcw.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker
/******************************************************************************
diff --git a/src/mess/drivers/pcw16.c b/src/mess/drivers/pcw16.c
index 9cdd1a173d5..e4e5d7915c1 100644
--- a/src/mess/drivers/pcw16.c
+++ b/src/mess/drivers/pcw16.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker
/******************************************************************************
diff --git a/src/mess/drivers/sorcerer.c b/src/mess/drivers/sorcerer.c
index fed1e849123..c2e810de539 100644
--- a/src/mess/drivers/sorcerer.c
+++ b/src/mess/drivers/sorcerer.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker, Robbbert
/******************************************************************************
diff --git a/src/mess/drivers/spec128.c b/src/mess/drivers/spec128.c
index 54c2b6a0392..471ca40756f 100644
--- a/src/mess/drivers/spec128.c
+++ b/src/mess/drivers/spec128.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker
/***************************************************************************
diff --git a/src/mess/drivers/specpls3.c b/src/mess/drivers/specpls3.c
index 444a1cca35c..e7a653c2c09 100644
--- a/src/mess/drivers/specpls3.c
+++ b/src/mess/drivers/specpls3.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker
/***************************************************************************
diff --git a/src/mess/drivers/spectrum.c b/src/mess/drivers/spectrum.c
index 8422f5593c2..762dd3bb98c 100644
--- a/src/mess/drivers/spectrum.c
+++ b/src/mess/drivers/spectrum.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker
/***************************************************************************
diff --git a/src/mess/drivers/timex.c b/src/mess/drivers/timex.c
index 5ac7d90b46d..806b6887571 100644
--- a/src/mess/drivers/timex.c
+++ b/src/mess/drivers/timex.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker
/***************************************************************************
diff --git a/src/mess/drivers/z88.c b/src/mess/drivers/z88.c
index cebe9236533..2a057e1d2e5 100644
--- a/src/mess/drivers/z88.c
+++ b/src/mess/drivers/z88.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker,Sandro Ronco
/******************************************************************************
diff --git a/src/mess/includes/amstrad.h b/src/mess/includes/amstrad.h
index 42434aa905b..ca2fbb3b9a1 100644
--- a/src/mess/includes/amstrad.h
+++ b/src/mess/includes/amstrad.h
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker, Barry Rodewald
/*****************************************************************************
*
diff --git a/src/mess/includes/avigo.h b/src/mess/includes/avigo.h
index 68407567286..b06dab92c65 100644
--- a/src/mess/includes/avigo.h
+++ b/src/mess/includes/avigo.h
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker,Sandro Ronco
/*****************************************************************************
*
diff --git a/src/mess/includes/kc.h b/src/mess/includes/kc.h
index ac1033d8d6c..46f1cd93d1e 100644
--- a/src/mess/includes/kc.h
+++ b/src/mess/includes/kc.h
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker,Sandro Ronco
/*****************************************************************************
*
diff --git a/src/mess/includes/nc.h b/src/mess/includes/nc.h
index 12a9044cf7d..e640ee3927d 100644
--- a/src/mess/includes/nc.h
+++ b/src/mess/includes/nc.h
@@ -1,4 +1,4 @@
-// license:BSD-3-Clause
+// license:GPL-2.0+
// copyright-holders:Wilbert Pol, Kevin Thacker
/*****************************************************************************
*
diff --git a/src/mess/includes/pcw.h b/src/mess/includes/pcw.h
index 2da077142f8..ef81c98bc82 100644
--- a/src/mess/includes/pcw.h
+++ b/src/mess/includes/pcw.h
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker
/*****************************************************************************
*
diff --git a/src/mess/includes/pcw16.h b/src/mess/includes/pcw16.h
index b9f9c3789c9..2321267578c 100644
--- a/src/mess/includes/pcw16.h
+++ b/src/mess/includes/pcw16.h
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker
/*****************************************************************************
*
diff --git a/src/mess/includes/sorcerer.h b/src/mess/includes/sorcerer.h
index bd584f70252..1a66cdd2afb 100644
--- a/src/mess/includes/sorcerer.h
+++ b/src/mess/includes/sorcerer.h
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker, Robbbert
/*****************************************************************************
*
diff --git a/src/mess/includes/spectrum.h b/src/mess/includes/spectrum.h
index 216829dfeec..d5dbae057b8 100644
--- a/src/mess/includes/spectrum.h
+++ b/src/mess/includes/spectrum.h
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker
/*****************************************************************************
*
diff --git a/src/mess/includes/z88.h b/src/mess/includes/z88.h
index daa5486e596..99a26354f5a 100644
--- a/src/mess/includes/z88.h
+++ b/src/mess/includes/z88.h
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker,Sandro Ronco
/*****************************************************************************
*
diff --git a/src/mess/machine/amstrad.c b/src/mess/machine/amstrad.c
index 27c6fe9ab06..032babb486f 100644
--- a/src/mess/machine/amstrad.c
+++ b/src/mess/machine/amstrad.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker, Barry Rodewald
/***************************************************************************
diff --git a/src/mess/machine/kc.c b/src/mess/machine/kc.c
index 429d9ef5b3b..ad707f9dbc6 100644
--- a/src/mess/machine/kc.c
+++ b/src/mess/machine/kc.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker,Sandro Ronco
/* Core includes */
#include "emu.h"
diff --git a/src/mess/machine/kc_keyb.c b/src/mess/machine/kc_keyb.c
index e0d2a4675b9..740d0dc7fce 100644
--- a/src/mess/machine/kc_keyb.c
+++ b/src/mess/machine/kc_keyb.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker,Sandro Ronco
/*********************************************************************
diff --git a/src/mess/machine/kc_keyb.h b/src/mess/machine/kc_keyb.h
index 35be753f13c..9114e65ae96 100644
--- a/src/mess/machine/kc_keyb.h
+++ b/src/mess/machine/kc_keyb.h
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker,Sandro Ronco
/*********************************************************************
diff --git a/src/mess/machine/nc.c b/src/mess/machine/nc.c
index 8d058a93cf4..07041c5c787 100644
--- a/src/mess/machine/nc.c
+++ b/src/mess/machine/nc.c
@@ -1,4 +1,4 @@
-// license:BSD-3-Clause
+// license:GPL-2.0+
// copyright-holders:Wilbert Pol, Kevin Thacker
/***************************************************************************
diff --git a/src/mess/machine/sorcerer.c b/src/mess/machine/sorcerer.c
index e7d42dc52fd..ea3d70dfbc5 100644
--- a/src/mess/machine/sorcerer.c
+++ b/src/mess/machine/sorcerer.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker, Robbbert
/******************************************************************************
diff --git a/src/mess/machine/spec_snqk.c b/src/mess/machine/spec_snqk.c
index a000c7dccff..5a2bbcc8917 100644
--- a/src/mess/machine/spec_snqk.c
+++ b/src/mess/machine/spec_snqk.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker
/***************************************************************************
diff --git a/src/mess/machine/spec_snqk.h b/src/mess/machine/spec_snqk.h
index 86a058f38b8..6eec8f90ade 100644
--- a/src/mess/machine/spec_snqk.h
+++ b/src/mess/machine/spec_snqk.h
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker
/*****************************************************************************
*
diff --git a/src/mess/video/avigo.c b/src/mess/video/avigo.c
index b8d173571b3..0177023fe9f 100644
--- a/src/mess/video/avigo.c
+++ b/src/mess/video/avigo.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker,Sandro Ronco
/***************************************************************************
diff --git a/src/mess/video/kc.c b/src/mess/video/kc.c
index 64097798640..9a9dcbce29b 100644
--- a/src/mess/video/kc.c
+++ b/src/mess/video/kc.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker,Sandro Ronco
/***************************************************************************
diff --git a/src/mess/video/nc.c b/src/mess/video/nc.c
index cd3c5e0d2f5..934bfbfd3a3 100644
--- a/src/mess/video/nc.c
+++ b/src/mess/video/nc.c
@@ -1,4 +1,4 @@
-// license:BSD-3-Clause
+// license:GPL-2.0+
// copyright-holders:Wilbert Pol, Kevin Thacker
/***************************************************************************
diff --git a/src/mess/video/pcw.c b/src/mess/video/pcw.c
index 18ebb58cefe..f4d18761636 100644
--- a/src/mess/video/pcw.c
+++ b/src/mess/video/pcw.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker
/***************************************************************************
diff --git a/src/mess/video/pcw16.c b/src/mess/video/pcw16.c
index 15931a1e203..40324af4e7e 100644
--- a/src/mess/video/pcw16.c
+++ b/src/mess/video/pcw16.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker
#include "emu.h"
#include "includes/pcw16.h"
diff --git a/src/mess/video/spectrum.c b/src/mess/video/spectrum.c
index 6f2a95bd090..9eaed423e6f 100644
--- a/src/mess/video/spectrum.c
+++ b/src/mess/video/spectrum.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker
/***************************************************************************
diff --git a/src/mess/video/timex.c b/src/mess/video/timex.c
index 9719b81ebfd..6b7bd460366 100644
--- a/src/mess/video/timex.c
+++ b/src/mess/video/timex.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker
/***************************************************************************
diff --git a/src/mess/video/z88.c b/src/mess/video/z88.c
index ecad0e0e38f..4b9a0b07f88 100644
--- a/src/mess/video/z88.c
+++ b/src/mess/video/z88.c
@@ -1,4 +1,4 @@
-// license:???
+// license:GPL-2.0+
// copyright-holders:Kevin Thacker,Sandro Ronco
/***************************************************************************