diff --git a/COPYRIGHT.txt b/COPYRIGHT.txt new file mode 100644 index 0000000..33eb373 --- /dev/null +++ b/COPYRIGHT.txt @@ -0,0 +1,19 @@ +GSPLUS - Advanced Apple IIGS Emulator Environment +Based on the KEGS emulator written by Kent Dickey +Copyright (C) 2016 - 2018 Dagen Brock +Copyright (C) 2010 - 2014 GSport contributors +Copyright (C) 2003 Kent Dickey + +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., +59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/assets/Info.plist b/assets/Info.plist index 9a2ed8a..ae07e47 100644 --- a/assets/Info.plist +++ b/assets/Info.plist @@ -7,7 +7,7 @@ CFBundleExecutable gsplus CFBundleGetInfoString - 0.12s, Copyright 2016 Dagen Brock + 0.14s, Copyright 2018 Dagen Brock CFBundleIconFile gsp-icons.icns CFBundleIdentifier @@ -24,9 +24,9 @@ CFBundleSignature gsplus CFBundleVersion - 0.12s + 0.14 NSHumanReadableCopyright - Copyright 2016 Dagen Brock + Copyright 2018 Dagen Brock LSMinimumSystemVersion 10.3 diff --git a/doc/gsplusmanual.pdf b/doc/gsplusmanual.pdf index edd6ec6..52dc5a0 100644 Binary files a/doc/gsplusmanual.pdf and b/doc/gsplusmanual.pdf differ diff --git a/doc/gsplusmanual.txt b/doc/gsplusmanual.txt index f61417e..ea89a5a 100644 --- a/doc/gsplusmanual.txt +++ b/doc/gsplusmanual.txt @@ -3,11 +3,8 @@ Modern cross-platform Apple IIgs emulator and tools, based on KEGS & GSPort ________________ - Screenshot.png Manual Revisions: -Beta Release: 2017-01-22 -Alpha Release: 2016-11-02 -Alpha Draft: 2016-10-27 -Initial Draft: 2016-05-01 + Screenshot.png Manual Version: +GSplus 0.14 (config release) Downloads: @@ -89,31 +86,26 @@ ________________ Command-line Options This is from source, some are experimental and not all may be built on your system. -badrd Halt on bad reads --noignbadacc Don’t ignore bad memory accesses --noignhalt Don’t ignore code red halts --test Allow testing --hpdev Use /dev/audio (HP/UX?) --alib Use Aserver audio server --24 Use 24-bit display depth --16 Use 16-bit display depth --15 Use 15-bit display depth --bw Force B/W modes --joystick Ignore joystick option --noshm Don’t use X shared memory --dhr140 Use simple double-hires color map --mem value Set memory size to value --skip value Set skip_amt to value --audio value Set audio enable to value --arate value Set preferred audio rate to value --v value Set verbose flags to value --display value Set X-Windows DISPLAY=value --enet value Set ethernet to value --config value Set config file to value --debugport value Set debugport to value --ssdir value Set screenshot save directory to value --scanline Enable scanline simulator --noscanline Disable scanline simulator (default) + -noignbadacc Don’t ignore bad memory accesses + -noignhalt Don’t ignore code red halts + -joystick Ignore joystick option + -bw Force B/W hires modes + -dhr140 Use simple double-hires color map + -fullscreen Attempt to start emulator in fullscreen + -mem value Set memory size to value + -skip value Set skip_amt to value + -audio value Set audio enable to value + -arate value Set preferred audio rate to value + -enet value Set ethernet to value + -config value Set config file to value + -debugport value Set debugport to value + -ssdir value Set screenshot save directory to value + -scanline value Enable scanline simulator at value % + -x value Open emulator window at x value + -y value Open emulator window at y value + -v value Set verbose flags to value Note: The final argument, if not a flag, will be tried as a mountable device. +________________ Debugger Commands - BROKEN!!! diff --git a/src/adb.c b/src/adb.c index 763e2c8..6c47a4e 100644 --- a/src/adb.c +++ b/src/adb.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2013 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* adb_mode bit 3 and bit 2 (faster repeats for arrows and space/del) not done*/ diff --git a/src/adb.h b/src/adb.h index 9f6fa56..c795a55 100644 --- a/src/adb.h +++ b/src/adb.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" diff --git a/src/arch/os2/gsportos2.h b/src/arch/os2/gsportos2.h index 459abee..d6d7624 100644 --- a/src/arch/os2/gsportos2.h +++ b/src/arch/os2/gsportos2.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* diff --git a/src/arch/os2/gsportos2.rc b/src/arch/os2/gsportos2.rc index d9819b0..4940a0b 100644 --- a/src/arch/os2/gsportos2.rc +++ b/src/arch/os2/gsportos2.rc @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include diff --git a/src/arch/os2/os2driver.c b/src/arch/os2/os2driver.c index 0c698e7..1fa5970 100644 --- a/src/arch/os2/os2driver.c +++ b/src/arch/os2/os2driver.c @@ -1,23 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2010 by GSport contributors - Copyright (C) 2016 - Dagen Brock - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "../../defc.h" diff --git a/src/arch/os2/os2snd_driver.c b/src/arch/os2/os2snd_driver.c index b8fe83b..0a10951 100644 --- a/src/arch/os2/os2snd_driver.c +++ b/src/arch/os2/os2snd_driver.c @@ -1,23 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2010 by GSport contributors - Copyright (C) 2016 - Dagen Brock - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ int g_preferred_rate = 48000; diff --git a/src/atbridge/aarp.c b/src/atbridge/aarp.c index 4fd5a96..78a7cb3 100644 --- a/src/atbridge/aarp.c +++ b/src/atbridge/aarp.c @@ -1,22 +1,8 @@ /* -GSPLUS - Advanced Apple IIGS Emulator Environment -Copyright (C) 2016 - Dagen Brock - -Copyright (C) 2013-2014 by Peter Neubauer - -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., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /** This module implements AARP, a necessary protocol for ELAP communication. **/ diff --git a/src/atbridge/aarp.h b/src/atbridge/aarp.h index 6b0e7d3..8b2bb76 100644 --- a/src/atbridge/aarp.h +++ b/src/atbridge/aarp.h @@ -1,22 +1,8 @@ /* -GSPLUS - Advanced Apple IIGS Emulator Environment -Copyright (C) 2016 - Dagen Brock - -Copyright (C) 2013-2014 by Peter Neubauer - -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., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ struct at_addr_t; diff --git a/src/atbridge/atalk.h b/src/atbridge/atalk.h index f4c14ac..7714cb4 100644 --- a/src/atbridge/atalk.h +++ b/src/atbridge/atalk.h @@ -1,22 +1,8 @@ /* -GSPLUS - Advanced Apple IIGS Emulator Environment -Copyright (C) 2016 - Dagen Brock - -Copyright (C) 2013-2014 by Peter Neubauer - -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., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ typedef byte at_node_t; diff --git a/src/atbridge/atbridge.c b/src/atbridge/atbridge.c index b3ac5e6..e893511 100644 --- a/src/atbridge/atbridge.c +++ b/src/atbridge/atbridge.c @@ -1,22 +1,8 @@ /* -GSPLUS - Advanced Apple IIGS Emulator Environment -Copyright (C) 2016 - Dagen Brock - -Copyright (C) 2013-2014 by Peter Neubauer - -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., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /** This module is the "heart" of the bridge and provides the connection between the ELAP and LLAP ports. **/ diff --git a/src/atbridge/atbridge.h b/src/atbridge/atbridge.h index 16a0a45..dc3dbc4 100644 --- a/src/atbridge/atbridge.h +++ b/src/atbridge/atbridge.h @@ -1,22 +1,8 @@ /* -GSPLUS - Advanced Apple IIGS Emulator Environment -Copyright (C) 2016 - Dagen Brock - -Copyright (C) 2013-2014 by Peter Neubauer - -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., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /** @@ -46,4 +32,3 @@ const at_node_t atbridge_get_node(); void atbridge_set_net(at_network_t net); void atbridge_set_node(at_node_t node); bool atbridge_address_used(const struct at_addr_t* addr); - diff --git a/src/atbridge/elap.c b/src/atbridge/elap.c index 5e8fb8b..cc47c17 100644 --- a/src/atbridge/elap.c +++ b/src/atbridge/elap.c @@ -1,22 +1,8 @@ /* -GSPLUS - Advanced Apple IIGS Emulator Environment -Copyright (C) 2016 - Dagen Brock - -Copyright (C) 2013-2014 by Peter Neubauer - -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., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /** This module implements the ELAP port of the bridge. **/ diff --git a/src/atbridge/elap.h b/src/atbridge/elap.h index ba0fdd0..7c7cb73 100644 --- a/src/atbridge/elap.h +++ b/src/atbridge/elap.h @@ -1,22 +1,8 @@ /* -GSPLUS - Advanced Apple IIGS Emulator Environment -Copyright (C) 2016 - Dagen Brock - -Copyright (C) 2013-2014 by Peter Neubauer - -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., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /** ELAP port of the AppleTalk Bridge **/ diff --git a/src/atbridge/elap_defs.h b/src/atbridge/elap_defs.h index 0858795..94e2f1d 100644 --- a/src/atbridge/elap_defs.h +++ b/src/atbridge/elap_defs.h @@ -1,22 +1,8 @@ /* -GSPLUS - Advanced Apple IIGS Emulator Environment -Copyright (C) 2016 - Dagen Brock - -Copyright (C) 2013-2014 by Peter Neubauer - -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., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* Ethernet addresses are 6 bytes */ diff --git a/src/atbridge/llap.c b/src/atbridge/llap.c index a194d64..c829017 100644 --- a/src/atbridge/llap.c +++ b/src/atbridge/llap.c @@ -1,22 +1,8 @@ /* -GSPLUS - Advanced Apple IIGS Emulator Environment -Copyright (C) 2016 - Dagen Brock - -Copyright (C) 2013-2014 by Peter Neubauer - -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., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /** This module implements the LLAP port of the bridge. **/ diff --git a/src/atbridge/llap.h b/src/atbridge/llap.h index b8692ae..0f8d1bf 100644 --- a/src/atbridge/llap.h +++ b/src/atbridge/llap.h @@ -1,22 +1,8 @@ /* -GSPLUS - Advanced Apple IIGS Emulator Environment -Copyright (C) 2016 - Dagen Brock - -Copyright (C) 2013-2014 by Peter Neubauer - -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., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ struct packet_t; diff --git a/src/atbridge/pcap_delay.c b/src/atbridge/pcap_delay.c index 3a88255..65d7a76 100644 --- a/src/atbridge/pcap_delay.c +++ b/src/atbridge/pcap_delay.c @@ -1,22 +1,8 @@ /* -GSPLUS - Advanced Apple IIGS Emulator Environment -Copyright (C) 2016 - Dagen Brock - -Copyright (C) 2014 by Peter Neubauer - -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., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include diff --git a/src/atbridge/pcap_delay.h b/src/atbridge/pcap_delay.h index 4435dd6..a6f595c 100644 --- a/src/atbridge/pcap_delay.h +++ b/src/atbridge/pcap_delay.h @@ -1,23 +1,10 @@ /* -GSPLUS - Advanced Apple IIGS Emulator Environment -Copyright (C) 2016 - Dagen Brock - -Copyright (C) 2014 by Peter Neubauer - -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., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ + /* This interface provides a thin, delay-loaded wrapper around the PCAP library so that you may start GSport without intalling PCAP. Of course, some features that require diff --git a/src/atbridge/port.c b/src/atbridge/port.c index 41c395a..9c7b4cc 100644 --- a/src/atbridge/port.c +++ b/src/atbridge/port.c @@ -1,22 +1,8 @@ /* -GSPLUS - Advanced Apple IIGS Emulator Environment -Copyright (C) 2016 - Dagen Brock - -Copyright (C) 2013-2014 by Peter Neubauer - -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., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /** This module implements queues for storing and transferring packets within the bridge. **/ diff --git a/src/atbridge/port.h b/src/atbridge/port.h index 52fa412..470ec29 100644 --- a/src/atbridge/port.h +++ b/src/atbridge/port.h @@ -1,22 +1,8 @@ /* -GSPLUS - Advanced Apple IIGS Emulator Environment -Copyright (C) 2016 - Dagen Brock - -Copyright (C) 2013-2014 by Peter Neubauer - -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., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ struct packet_t diff --git a/src/clock.c b/src/clock.c index dbd7ed0..b10e969 100644 --- a/src/clock.c +++ b/src/clock.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2012 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" @@ -448,4 +432,3 @@ do_clock_data() break; } } - diff --git a/src/compile_time.c b/src/compile_time.c index 2de63d4..e135edb 100644 --- a/src/compile_time.c +++ b/src/compile_time.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ char g_compile_time[] = "Compiled: " __DATE__ " " __TIME__ ; diff --git a/src/config.c b/src/config.c index c432b69..18fb7e4 100644 --- a/src/config.c +++ b/src/config.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2014 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" diff --git a/src/config.h b/src/config.h index 4b01c60..9cbb8ae 100644 --- a/src/config.h +++ b/src/config.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #define CONF_BUF_LEN 1024 diff --git a/src/defc.h b/src/defc.h index 12ba13d..c33e3ff 100644 --- a/src/defc.h +++ b/src/defc.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defcomm.h" diff --git a/src/defcomm.h b/src/defcomm.h index 12360d1..be808ea 100644 --- a/src/defcomm.h +++ b/src/defcomm.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #define SHIFT_PER_CHANGE 3 diff --git a/src/defs.h b/src/defs.h index 6f7dbc2..f356f61 100644 --- a/src/defs.h +++ b/src/defs.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defcomm.h" @@ -65,4 +49,3 @@ ftmp2 .reg %fr5 fscr1 .reg %fr6 #define LDC(val,reg) ldil L%val,reg ! ldo R%val(reg),reg - diff --git a/src/defs_instr.h b/src/defs_instr.h index 9fa2816..08c116e 100644 --- a/src/defs_instr.h +++ b/src/defs_instr.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #ifdef ASM diff --git a/src/dis.c b/src/dis.c index 52f6913..3c67f9f 100644 --- a/src/dis.c +++ b/src/dis.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include diff --git a/src/disas.h b/src/disas.h index c8f8a0d..a7f0029 100644 --- a/src/disas.h +++ b/src/disas.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ enum { diff --git a/src/engine_c.c b/src/engine_c.c index aac2f77..bd1f278 100644 --- a/src/engine_c.c +++ b/src/engine_c.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" diff --git a/src/engine_s.s b/src/engine_s.s index 6a4db70..54a18c0 100644 --- a/src/engine_s.s +++ b/src/engine_s.s @@ -1,22 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ .code diff --git a/src/fbdriver.c b/src/fbdriver.c index 454d60e..1673c33 100644 --- a/src/fbdriver.c +++ b/src/fbdriver.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2013 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* diff --git a/src/gsportfont.h b/src/gsportfont.h index 39473b8..fdedf09 100644 --- a/src/gsportfont.h +++ b/src/gsportfont.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* char 0x00 (raw 0x40) */ diff --git a/src/instable.h b/src/instable.h index 545866f..468b401 100644 --- a/src/instable.h +++ b/src/instable.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ inst00_SYM /* brk */ @@ -2706,4 +2690,3 @@ instfe_SYM /* INC Abs,X */ instff_SYM /* SBC Long,X */ GET_LONG_X_RD(); SBC_INST(); - diff --git a/src/iw_charmaps.h b/src/iw_charmaps.h index 5ca42ad..9c97ed7 100644 --- a/src/iw_charmaps.h +++ b/src/iw_charmaps.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ // Various ASCII codepage to unicode maps diff --git a/src/iwm.c b/src/iwm.c index 0480e72..51345f3 100644 --- a/src/iwm.c +++ b/src/iwm.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2012 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" diff --git a/src/iwm.h b/src/iwm.h index ccb5cfd..107de06 100644 --- a/src/iwm.h +++ b/src/iwm.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #define MAX_TRACKS (2*80) diff --git a/src/iwm_35_525.h b/src/iwm_35_525.h index c8b887d..190930e 100644 --- a/src/iwm_35_525.h +++ b/src/iwm_35_525.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ int diff --git a/src/joystick_driver.c b/src/joystick_driver.c index 2b79e52..a3d6ce1 100644 --- a/src/joystick_driver.c +++ b/src/joystick_driver.c @@ -1,24 +1,8 @@ /* - GSplus - an Apple //gs Emulator - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2013 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" diff --git a/src/macdriver_console.c b/src/macdriver_console.c index ca6f3c5..b046bb5 100644 --- a/src/macdriver_console.c +++ b/src/macdriver_console.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2012 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #ifdef ACTIVEIPHONE diff --git a/src/macdriver_generic.c b/src/macdriver_generic.c index 72264a1..08e3af6 100644 --- a/src/macdriver_generic.c +++ b/src/macdriver_generic.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #ifdef ACTIVEIPHONE diff --git a/src/macsnd_driver.c b/src/macsnd_driver.c index db9cb51..f976112 100644 --- a/src/macsnd_driver.c +++ b/src/macsnd_driver.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" diff --git a/src/moremem.c b/src/moremem.c index 027ece1..00dab68 100644 --- a/src/moremem.c +++ b/src/moremem.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2014 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" diff --git a/src/op_routs.h b/src/op_routs.h index faaac6b..aafa9da 100644 --- a/src/op_routs.h +++ b/src/op_routs.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #ifdef ASM @@ -469,4 +453,3 @@ get_dloc_ind_y_rd_16 #endif /* ASM */ - diff --git a/src/options.c b/src/options.c index d61d4f0..e4b40e2 100644 --- a/src/options.c +++ b/src/options.c @@ -7,9 +7,6 @@ #include "defc.h" - - - // Halts on bad reads. Sets flags via engine_s.s:set_halt_act() function extern int g_halt_on_bad_read; // defined in sim65816.c // Ignore bad memory accesses. @@ -76,7 +73,7 @@ extern int g_cur_a2_stat; void help_exit(); // displays the cli help text and exits with 1 -int parse_cli_options(int argc, char **argv) { +int parse_cli_options(int argc, char **argv) { int i; int tmp1; int skip_amt; diff --git a/src/paddles.c b/src/paddles.c index 005f5eb..b4a44a6 100644 --- a/src/paddles.c +++ b/src/paddles.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" diff --git a/src/parallel.c b/src/parallel.c index 9314b55..569939e 100644 --- a/src/parallel.c +++ b/src/parallel.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* diff --git a/src/partls.c b/src/partls.c index be1a532..456b75b 100644 --- a/src/partls.c +++ b/src/partls.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" diff --git a/src/printer_charmaps.h b/src/printer_charmaps.h index b37c74b..dcb0d16 100644 --- a/src/printer_charmaps.h +++ b/src/printer_charmaps.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ // Various ASCII codepage to unicode maps diff --git a/src/prodos.h b/src/prodos.h index 713a30f..0b1ba8d 100644 --- a/src/prodos.h +++ b/src/prodos.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ typedef struct l2byte_st L2byte; diff --git a/src/prodos_protos.h b/src/prodos_protos.h index b7f73e4..633c4de 100644 --- a/src/prodos_protos.h +++ b/src/prodos_protos.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* to_pro.c */ diff --git a/src/protos.h b/src/protos.h index c5b62f3..f319055 100644 --- a/src/protos.h +++ b/src/protos.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2012 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* xdriver.c and macdriver.c and windriver.c */ diff --git a/src/protos_engine_c.h b/src/protos_engine_c.h index 219ab77..9ea9220 100644 --- a/src/protos_engine_c.h +++ b/src/protos_engine_c.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* END_HDR */ diff --git a/src/protos_macdriver.h b/src/protos_macdriver.h index a5f6842..f612623 100644 --- a/src/protos_macdriver.h +++ b/src/protos_macdriver.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ void show_simple_alert(char *str1, char *str2, char *str3, int num); @@ -44,4 +28,3 @@ void x_auto_repeat_off(int must); void x_hide_pointer(int do_hide); void x_full_screen(int do_full); void update_main_window_size(void); - diff --git a/src/protos_macsnd_driver.h b/src/protos_macsnd_driver.h index e8ea792..1dc436b 100644 --- a/src/protos_macsnd_driver.h +++ b/src/protos_macsnd_driver.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* END_HDR */ diff --git a/src/protos_windriver.h b/src/protos_windriver.h index 605269c..d9914e1 100644 --- a/src/protos_windriver.h +++ b/src/protos_windriver.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ // $KmKId: protos_windriver.h,v 1.4 2004-03-23 17:27:26-05 kentd Exp $ @@ -47,4 +31,3 @@ void x_push_done(void); void x_auto_repeat_on(int must); void x_auto_repeat_off(int must); void x_hide_pointer(int do_hide); - diff --git a/src/protos_xdriver.h b/src/protos_xdriver.h index 3b0a1f1..14274ea 100644 --- a/src/protos_xdriver.h +++ b/src/protos_xdriver.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* END_HDR */ diff --git a/src/scc.c b/src/scc.c index 25296b4..c53c2e6 100644 --- a/src/scc.c +++ b/src/scc.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2014 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" diff --git a/src/scc.h b/src/scc.h index b69a777..81b1e71 100644 --- a/src/scc.h +++ b/src/scc.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include diff --git a/src/scc_imagewriter.c b/src/scc_imagewriter.c index be9d9b1..9630d1f 100644 --- a/src/scc_imagewriter.c +++ b/src/scc_imagewriter.c @@ -1,23 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2013 - 2014 by GSport contributors - Originally authored by Christopher Mason - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* This is an interface between the SCC emulation and the Virtual Imagewriter. */ diff --git a/src/scc_llap.c b/src/scc_llap.c index 5686296..4b02c3c 100644 --- a/src/scc_llap.c +++ b/src/scc_llap.c @@ -1,23 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2013 - 2014 by GSport contributors - Originally authored by Peter Neubauer - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* This is an interface between the SCC emulation and the LAP bridge. */ diff --git a/src/scc_llap.h b/src/scc_llap.h index 9a33164..ccf90b8 100644 --- a/src/scc_llap.h +++ b/src/scc_llap.h @@ -1,23 +1,8 @@ /* -GSPLUS - Advanced Apple IIGS Emulator Environment -Copyright (C) 2016 - Dagen Brock - -Copyright (C) 2013 by GSport contributors -Originally authored by Peter Neubauer - -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., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ void scc_llap_init(); diff --git a/src/scc_macdriver.c b/src/scc_macdriver.c index 7a5964e..ae35399 100644 --- a/src/scc_macdriver.c +++ b/src/scc_macdriver.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* This file contains the Mac serial calls */ diff --git a/src/scc_socket_driver.c b/src/scc_socket_driver.c index 0fc4610..68a3b19 100644 --- a/src/scc_socket_driver.c +++ b/src/scc_socket_driver.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2012 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* This file contains the socket calls */ diff --git a/src/scc_windriver.c b/src/scc_windriver.c index c8fbdb3..48d3a36 100644 --- a/src/scc_windriver.c +++ b/src/scc_windriver.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* This file contains the Win32 COM1/COM2 calls */ diff --git a/src/sdl2_driver.c b/src/sdl2_driver.c index 3c6bc31..8ac05b0 100644 --- a/src/sdl2_driver.c +++ b/src/sdl2_driver.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2012 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ // @todo: mouse clip bugs.. great western shootout. Paint 8/16. still in win32 diff --git a/src/sdl2snd_driver.c b/src/sdl2snd_driver.c index af8651a..7e35d3d 100644 --- a/src/sdl2snd_driver.c +++ b/src/sdl2snd_driver.c @@ -1,20 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "SDL.h" diff --git a/src/sdlsnd_driver.c b/src/sdlsnd_driver.c index 733eac7..1a822ab 100644 --- a/src/sdlsnd_driver.c +++ b/src/sdlsnd_driver.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include diff --git a/src/sim65816.c b/src/sim65816.c index 8236619..c4a9ef1 100644 --- a/src/sim65816.c +++ b/src/sim65816.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2014 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include diff --git a/src/size_tab.h b/src/size_tab.h index 1ef1998..4cec112 100644 --- a/src/size_tab.h +++ b/src/size_tab.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ .word inst00_SYM+1 /* brk */ diff --git a/src/smartport.c b/src/smartport.c index f675ab8..389f64d 100644 --- a/src/smartport.c +++ b/src/smartport.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2012 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" diff --git a/src/sound.c b/src/sound.c index 1892ad1..31682e7 100644 --- a/src/sound.c +++ b/src/sound.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2012 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" diff --git a/src/sound.h b/src/sound.h index 9fb4192..9c29bb5 100644 --- a/src/sound.h +++ b/src/sound.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #if !defined(_WIN32) && !defined(__CYGWIN__) && !defined (__OS2__) diff --git a/src/sound_driver.c b/src/sound_driver.c index 69dfb66..00d9b87 100644 --- a/src/sound_driver.c +++ b/src/sound_driver.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2012 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" diff --git a/src/superhires.h b/src/superhires.h index 704ebe4..7538e49 100644 --- a/src/superhires.h +++ b/src/superhires.h @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /* This file is included by video.c */ diff --git a/src/tfe/protos_tfe.h b/src/tfe/protos_tfe.h index 9164ab9..0e2885f 100644 --- a/src/tfe/protos_tfe.h +++ b/src/tfe/protos_tfe.h @@ -1,22 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ /*tfe.c*/ @@ -101,4 +87,4 @@ int tfe_arch_enumadapter_open(void); int tfe_arch_enumadapter(char **ppname, char **ppdescription); int tfe_arch_enumadapter_close(void); -#endif \ No newline at end of file +#endif diff --git a/src/to_pro.c b/src/to_pro.c index 88ff8f1..55770bd 100755 --- a/src/to_pro.c +++ b/src/to_pro.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" diff --git a/src/video.c b/src/video.c index 8ebfd46..3f33d5f 100644 --- a/src/video.c +++ b/src/video.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2012 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include @@ -103,6 +87,11 @@ int g_status_refresh_needed = 1; int g_vbl_border_color = 0; int g_border_last_vbl_changes = 0; +int g_use_dhr140 = 0; +int g_use_bw_hires = 0; +int g_startx = WINDOWPOS_UNDEFINED; +int g_starty = WINDOWPOS_UNDEFINED; + int g_a2_new_all_stat[200]; int g_a2_cur_all_stat[200]; int g_new_a2_stat_cur_line = 0; diff --git a/src/win32snd_driver.c b/src/win32snd_driver.c index 91e6242..ec0ab6c 100644 --- a/src/win32snd_driver.c +++ b/src/win32snd_driver.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #include "defc.h" diff --git a/src/win_console.c b/src/win_console.c index 38e4aef..ea407be 100644 --- a/src/win_console.c +++ b/src/win_console.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #define WIN32_LEAN_AND_MEAN /* Tell windows we want less header gunk */ diff --git a/src/win_generic.c b/src/win_generic.c index c81e5a1..27e7c4d 100644 --- a/src/win_generic.c +++ b/src/win_generic.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ #define WIN32_LEAN_AND_MEAN /* Tell windows we want less header gunk */ diff --git a/src/xdriver.c b/src/xdriver.c index 76f6819..84c1fc6 100644 --- a/src/xdriver.c +++ b/src/xdriver.c @@ -1,24 +1,8 @@ /* - GSPLUS - Advanced Apple IIGS Emulator Environment - Copyright (C) 2016 - Dagen Brock - - Copyright (C) 2010 - 2012 by GSport contributors - - Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey - - 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., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + GSPLUS - Advanced Apple IIGS Emulator Environment + Based on the KEGS emulator written by Kent Dickey + See COPYRIGHT.txt for Copyright information + See COPYING.txt for license (GPL v2) */ # if !defined(__CYGWIN__) && !defined(__POWERPC__)