From 2dbdb063718b0f118b26e2bdf185a1a8e7977eb3 Mon Sep 17 00:00:00 2001 From: Jasmine Iwanek Date: Thu, 25 Aug 2022 22:50:59 -0400 Subject: [PATCH] Update copyright headers --- src/chipset/intel_815ep.c | 18 +++++++++++++++--- src/device/hwm_nsc366.c | 16 +++++++++++++--- src/device/intel_ich2_gpio.c | 17 +++++++++++++---- src/device/intel_ich2_trap.c | 16 +++++++++++++--- src/device/tco.c | 20 ++++++++++---------- src/include/86box/intel_ich2_gpio.h | 16 +++++++++++++--- src/include/86box/intel_ich2_trap.h | 16 +++++++++++++--- src/include/86box/nsc366.h | 16 +++++++++++++--- src/include/86box/snd_ac97_intel.h | 16 +++++++++++++--- src/include/86box/tco.h | 16 +++++++++++++--- src/machine/m_at_ich2.c | 16 +++++++++++++--- src/mem/815ep_spd_hack.c | 16 +++++++++++++--- src/mem/sst_flash.c | 26 ++++++++++++++------------ src/sio/sio_it8702.c | 16 +++++++++++++--- src/sio/sio_nsc366.c | 22 +++++++++++++--------- src/sio/sio_w83627hf.c | 20 ++++++++++---------- src/sound/snd_ac97_intel.c | 16 +++++++++++++--- 17 files changed, 218 insertions(+), 81 deletions(-) diff --git a/src/chipset/intel_815ep.c b/src/chipset/intel_815ep.c index e15b74ee8..61a29f861 100644 --- a/src/chipset/intel_815ep.c +++ b/src/chipset/intel_815ep.c @@ -1,9 +1,21 @@ /* - * Intel 815EP MCH Bridge + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * Authors: Tiseno100, + * This file is part of the 86Box distribution. + * + * Implementation of Intel 82815EP & 82815P MCH Bridge + * + * + * + * Authors: Tiseno100, + * Jasmine Iwanek, + * + * Copyright 2022 Tiseno100. + * Copyright 2022 Jasmine Iwanek. * - * Copyright 2022 Tiseno100. */ #include diff --git a/src/device/hwm_nsc366.c b/src/device/hwm_nsc366.c index 90bbe1666..61b169925 100644 --- a/src/device/hwm_nsc366.c +++ b/src/device/hwm_nsc366.c @@ -1,9 +1,19 @@ /* - * National Semiconductor PC87366(NSC366) Hardware Monitor + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * Authors: Tiseno100, + * This file is part of the 86Box distribution. + * + * Implementation of National Semiconductor PC87366(NSC366) Hardware Monitor + * + * + * + * Authors: Tiseno100, + * + * Copyright 2022 Tiseno100. * - * Copyright 2022 Tiseno100. */ /* The conversion algorithms were taken by the pc87360.c driver of the Linux kernel. diff --git a/src/device/intel_ich2_gpio.c b/src/device/intel_ich2_gpio.c index e14cdbaec..6863e10b7 100644 --- a/src/device/intel_ich2_gpio.c +++ b/src/device/intel_ich2_gpio.c @@ -1,12 +1,21 @@ /* - * Intel ICH2 GPIO + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * Authors: Tiseno100, + * This file is part of the 86Box distribution. + * + * Implementation of Intel ICH2 GPIO + * + * + * + * Authors: Tiseno100, + * + * Copyright 2022 Tiseno100. * - * Copyright 2022 Tiseno100. */ - #include #include #include diff --git a/src/device/intel_ich2_trap.c b/src/device/intel_ich2_trap.c index fd05db205..084d791f9 100644 --- a/src/device/intel_ich2_trap.c +++ b/src/device/intel_ich2_trap.c @@ -1,9 +1,19 @@ /* - * Intel ICH2 Trap Handler + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * Authors: Tiseno100, + * This file is part of the 86Box distribution. + * + * Intel ICH2 Trap Handler + * + * + * + * Authors: Tiseno100, + * + * Copyright 2022 Tiseno100. * - * Copyright 2022 Tiseno100. */ #include diff --git a/src/device/tco.c b/src/device/tco.c index bd6e3163e..aaad472fc 100644 --- a/src/device/tco.c +++ b/src/device/tco.c @@ -1,19 +1,19 @@ /* - * 86Box A hypervisor and IBM PC system emulator that specializes in - * running old operating systems and software designed for IBM - * PC systems and compatibles from 1981 through fairly recent - * system designs based on the PCI bus. + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * This file is part of the 86Box distribution. + * This file is part of the 86Box distribution. * - * Intel TCO Handler. + * Intel TCO Handler. * - * Note: There's a TCO Timer too but for now it's of no use thus - * not implemented + * Note: There's a TCO Timer too but for now it's of no use thus + * not implemented * - * Authors: Tiseno100, + * Authors: Tiseno100, * - * Copyright 2022 Tiseno100. + * Copyright 2022 Tiseno100. */ /* Note: There's a TCO Timer too but for now it's of no use thus not implemented */ diff --git a/src/include/86box/intel_ich2_gpio.h b/src/include/86box/intel_ich2_gpio.h index 945b38d41..95db5d27b 100644 --- a/src/include/86box/intel_ich2_gpio.h +++ b/src/include/86box/intel_ich2_gpio.h @@ -1,9 +1,19 @@ /* - * Intel ICH2 GPIO Header + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * Authors: Tiseno100, + * This file is part of the 86Box distribution. + * + * Intel ICH2 GPIO Header + * + * + * + * Authors: Tiseno100, + * + * Copyright 2022 Tiseno100. * - * Copyright 2022 Tiseno100. */ #ifndef EMU_INTEL_ICH2_GPIO_H diff --git a/src/include/86box/intel_ich2_trap.h b/src/include/86box/intel_ich2_trap.h index 968f79a98..153c4616f 100644 --- a/src/include/86box/intel_ich2_trap.h +++ b/src/include/86box/intel_ich2_trap.h @@ -1,9 +1,19 @@ /* - * Intel ICH2 Trap Header + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * Authors: Tiseno100, + * This file is part of the 86Box distribution. + * + * Intel ICH2 Trap Header + * + * + * + * Authors: Tiseno100, + * + * Copyright 2022 Tiseno100. * - * Copyright 2022 Tiseno100. */ #ifndef EMU_INTEL_ICH2_TRAP_H diff --git a/src/include/86box/nsc366.h b/src/include/86box/nsc366.h index bf1e7063d..f2e47bf1f 100644 --- a/src/include/86box/nsc366.h +++ b/src/include/86box/nsc366.h @@ -1,9 +1,19 @@ /* - * National Semiconductor PC87366(NSC366) Header + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * Authors: Tiseno100, + * This file is part of the 86Box distribution. + * + * National Semiconductor PC87366(NSC366) Header + * + * + * + * Authors: Tiseno100, + * + * Copyright 2022 Tiseno100. * - * Copyright 2022 Tiseno100. */ #ifndef EMU_NSC_366_H diff --git a/src/include/86box/snd_ac97_intel.h b/src/include/86box/snd_ac97_intel.h index 7356c213e..35a708e44 100644 --- a/src/include/86box/snd_ac97_intel.h +++ b/src/include/86box/snd_ac97_intel.h @@ -1,9 +1,19 @@ /* - * Intel AC'97 Header + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * Authors: Tiseno100, + * This file is part of the 86Box distribution. + * + * Intel AC'97 Header + * + * + * + * Authors: Tiseno100, + * + * Copyright 2022 Tiseno100. * - * Copyright 2022 Tiseno100. */ diff --git a/src/include/86box/tco.h b/src/include/86box/tco.h index fa3a3f437..4d2ef21f4 100644 --- a/src/include/86box/tco.h +++ b/src/include/86box/tco.h @@ -1,9 +1,19 @@ /* - * Intel TCO Header + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * Authors: Tiseno100, + * This file is part of the 86Box distribution. + * + * Intel TCO Header + * + * + * + * Authors: Tiseno100, + * + * Copyright 2022 Tiseno100. * - * Copyright 2022 Tiseno100. */ #ifndef EMU_TCO_H diff --git a/src/machine/m_at_ich2.c b/src/machine/m_at_ich2.c index 9cbd9ce4a..28b4d22e2 100644 --- a/src/machine/m_at_ich2.c +++ b/src/machine/m_at_ich2.c @@ -1,9 +1,19 @@ /* - * Intel ICH2 based Motherboards + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * Authors: Tiseno100, + * This file is part of the 86Box distribution. + * + * Intel ICH2 based Motherboards + * + * + * + * Authors: Tiseno100, + * + * Copyright 2022 Tiseno100. * - * Copyright 2022 Tiseno100. */ #include diff --git a/src/mem/815ep_spd_hack.c b/src/mem/815ep_spd_hack.c index e3f1efd9e..72872a15b 100644 --- a/src/mem/815ep_spd_hack.c +++ b/src/mem/815ep_spd_hack.c @@ -1,9 +1,19 @@ /* - * 815EP SPD Memory Hack + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * Authors: Tiseno100, + * This file is part of the 86Box distribution. + * + * Intel 82815EP SPD Memory Hack + * + * + * + * Authors: Tiseno100, + * + * Copyright 2022 Tiseno100. * - * Copyright 2022 Tiseno100. */ /* This is a hack because the 86Box SPD calculation algorithm is not made for the 815EP banking. diff --git a/src/mem/sst_flash.c b/src/mem/sst_flash.c index 2f2ab02bd..7c3b59ae2 100644 --- a/src/mem/sst_flash.c +++ b/src/mem/sst_flash.c @@ -1,23 +1,25 @@ /* - * 86Box A hypervisor and IBM PC system emulator that specializes in - * running old operating systems and software designed for IBM - * PC systems and compatibles from 1981 through fairly recent - * system designs based on the PCI bus. + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * This file is part of the 86Box distribution. + * This file is part of the 86Box distribution. * - * Implementation of an SST flash chip. + * Implementation of an SST flash chip. * * * - * Authors: Sarah Walker, - * Miran Grca, - * Melissa Goad, + * Authors: Sarah Walker, + * Miran Grca, + * Melissa Goad, * - * Copyright 2008-2020 Sarah Walker. - * Copyright 2016-2020 Miran Grca. - * Copyright 2020 Melissa Goad. + * Copyright 2008-2020 Sarah Walker. + * Copyright 2016-2020 Miran Grca. + * Copyright 2020 Melissa Goad. + * Copyright 2022 Jasmine Iwanek. */ + #include #include #include diff --git a/src/sio/sio_it8702.c b/src/sio/sio_it8702.c index 8c2815585..504be0a3a 100644 --- a/src/sio/sio_it8702.c +++ b/src/sio/sio_it8702.c @@ -1,9 +1,19 @@ /* - * ITE IT8702 + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * Authors: Tiseno100, + * This file is part of the 86Box distribution. + * + * ITE IT8702 + * + * + * + * Authors: Tiseno100, + * + * Copyright 2022 Tiseno100. * - * Copyright 2022 Tiseno100. */ // NOTE: We don't really utilize fans because our emulated board doesn't use them. diff --git a/src/sio/sio_nsc366.c b/src/sio/sio_nsc366.c index 352b67d0a..8608d2c9c 100644 --- a/src/sio/sio_nsc366.c +++ b/src/sio/sio_nsc366.c @@ -1,16 +1,20 @@ /* - * 86Box A hypervisor and IBM PC system emulator that specializes in - * running old operating systems and software designed for IBM - * PC systems and compatibles from 1981 through fairly recent - * system designs based on the PCI bus. + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * This file is part of the 86Box distribution. + * This file is part of the 86Box distribution. * - * Emulation of the National Semiconductor PC87366 (NSC366) - * Super I/O chip. + * Emulation of the National Semiconductor PC87366 (NSC366) + * Super I/O chip. + * + * + * + * Authors: Tiseno100, + * + * Copyright 2022 Tiseno100. * - * Author: Tiseno100, - * Copyright 2022 Tiseno100. */ #include diff --git a/src/sio/sio_w83627hf.c b/src/sio/sio_w83627hf.c index 48b846294..aeacb9fb3 100644 --- a/src/sio/sio_w83627hf.c +++ b/src/sio/sio_w83627hf.c @@ -1,19 +1,19 @@ /* - * 86Box A hypervisor and IBM PC system emulator that specializes in - * running old operating systems and software designed for IBM - * PC systems and compatibles from 1981 through fairly recent - * system designs based on the PCI bus. + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * This file is part of the 86Box distribution. + * This file is part of the 86Box distribution. * - * Implementation of the Winbond W83627HF chipset. + * Implementation of the Winbond W83627HF chipset. * * - * Authors: Tiseno100, - * Miran Grca, + * Authors: Tiseno100, + * Miran Grca, * - * Copyright 2020,2021 Tiseno100. - * Copyright 2021,2021 Miran Grca. + * Copyright 2020-2022 Tiseno100. + * Copyright 2021-2022 Miran Grca. */ /* diff --git a/src/sound/snd_ac97_intel.c b/src/sound/snd_ac97_intel.c index b5e4ac52c..b415ddcaf 100644 --- a/src/sound/snd_ac97_intel.c +++ b/src/sound/snd_ac97_intel.c @@ -1,9 +1,19 @@ /* - * Intel AC'97 + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. * - * Authors: Tiseno100, + * This file is part of the 86Box distribution. + * + * Intel AC'97 + * + * + * + * Authors: Tiseno100, + * + * Copyright 2022 Tiseno100. * - * Copyright 2022 Tiseno100. */ /*