From 1ce76050a814c3e604f66dc779673512ff47cd08 Mon Sep 17 00:00:00 2001 From: Damian Yerrick Date: Sat, 13 Apr 2024 08:42:21 -0400 Subject: [PATCH] MDFourier: add copyright notice to source Persune asked what "fe" is in the file names. Add a comment at the top that it means "front end". --- gameboy/src/mdfourier.z80 | 18 ++++++++++++++++++ gameboy/src/mdfourierfe.z80 | 17 ++++++++++++++++- nes/src/mdfourier.s | 18 ++++++++++++++++++ nes/src/mdfourier4kfe.s | 18 ++++++++++++++++++ nes/src/mdfourierfe.s | 18 ++++++++++++++++++ 5 files changed, 88 insertions(+), 1 deletion(-) diff --git a/gameboy/src/mdfourier.z80 b/gameboy/src/mdfourier.z80 index ea74cb0..5641d87 100644 --- a/gameboy/src/mdfourier.z80 +++ b/gameboy/src/mdfourier.z80 @@ -1,3 +1,21 @@ +; +; MDFourier tone generator for Game Boy +; Copyright 2020, 2023 Damian Yerrick +; +; This program is free software; you can redistribute it and/or modify +; it under the terms of the GNU General Public License as published by +; the Free Software Foundation; either version 2 of the License, or +; (at your option) any later version. +; +; This program is distributed in the hope that it will be useful, +; but WITHOUT ANY WARRANTY; without even the implied warranty of +; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +; GNU General Public License for more details. +; +; You should have received a copy of the GNU General Public License along +; with this program; if not, write to the Free Software Foundation, Inc., +; 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +; include "src/hardware.inc" include "src/global.inc" diff --git a/gameboy/src/mdfourierfe.z80 b/gameboy/src/mdfourierfe.z80 index 43825f6..dd05f89 100644 --- a/gameboy/src/mdfourierfe.z80 +++ b/gameboy/src/mdfourierfe.z80 @@ -1,5 +1,20 @@ ; -; MDFourier front end +; Front end for MDFourier tone generator in 144p Test Suite +; Copyright 2020, 2023 Damian Yerrick +; +; This program is free software; you can redistribute it and/or modify +; it under the terms of the GNU General Public License as published by +; the Free Software Foundation; either version 2 of the License, or +; (at your option) any later version. +; +; This program is distributed in the hope that it will be useful, +; but WITHOUT ANY WARRANTY; without even the implied warranty of +; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +; GNU General Public License for more details. +; +; You should have received a copy of the GNU General Public License along +; with this program; if not, write to the Free Software Foundation, Inc., +; 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ; include "src/gb.inc" include "src/global.inc" diff --git a/nes/src/mdfourier.s b/nes/src/mdfourier.s index 75b1034..867fa8f 100644 --- a/nes/src/mdfourier.s +++ b/nes/src/mdfourier.s @@ -1,3 +1,21 @@ +; +; MDFourier tone generator for NES 2A03 +; Copyright 2020, 2023 Damian Yerrick +; +; This program is free software; you can redistribute it and/or modify +; it under the terms of the GNU General Public License as published by +; the Free Software Foundation; either version 2 of the License, or +; (at your option) any later version. +; +; This program is distributed in the hope that it will be useful, +; but WITHOUT ANY WARRANTY; without even the implied warranty of +; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +; GNU General Public License for more details. +; +; You should have received a copy of the GNU General Public License along +; with this program; if not, write to the Free Software Foundation, Inc., +; 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +; .include "nes.inc" .include "global.inc" diff --git a/nes/src/mdfourier4kfe.s b/nes/src/mdfourier4kfe.s index 16a5c05..3164eae 100644 --- a/nes/src/mdfourier4kfe.s +++ b/nes/src/mdfourier4kfe.s @@ -1,3 +1,21 @@ +; +; Front end for MDFourier tone generator (stand-alone 4K ROM) +; Copyright 2021, 2023 Damian Yerrick +; +; This program is free software; you can redistribute it and/or modify +; it under the terms of the GNU General Public License as published by +; the Free Software Foundation; either version 2 of the License, or +; (at your option) any later version. +; +; This program is distributed in the hope that it will be useful, +; but WITHOUT ANY WARRANTY; without even the implied warranty of +; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +; GNU General Public License for more details. +; +; You should have received a copy of the GNU General Public License along +; with this program; if not, write to the Free Software Foundation, Inc., +; 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +; .include "nes.inc" .include "global.inc" diff --git a/nes/src/mdfourierfe.s b/nes/src/mdfourierfe.s index 6a9839d..aca3168 100644 --- a/nes/src/mdfourierfe.s +++ b/nes/src/mdfourierfe.s @@ -1,3 +1,21 @@ +; +; Front end for MDFourier tone generator (in 240p Test Suite) +; Copyright 2020, 2023 Damian Yerrick +; +; This program is free software; you can redistribute it and/or modify +; it under the terms of the GNU General Public License as published by +; the Free Software Foundation; either version 2 of the License, or +; (at your option) any later version. +; +; This program is distributed in the hope that it will be useful, +; but WITHOUT ANY WARRANTY; without even the implied warranty of +; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +; GNU General Public License for more details. +; +; You should have received a copy of the GNU General Public License along +; with this program; if not, write to the Free Software Foundation, Inc., +; 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +; .include "nes.inc" .include "global.inc" .include "rectfill.inc"