Update of /cvsroot/vba/VisualBoyAdvance/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26515 Modified Files: AutoBuild.h CheatSearch.cpp CheatSearch.h Cheats.cpp Cheats.h EEprom.cpp EEprom.h Flash.cpp Flash.h GBA.cpp GBA.h GBAinline.h Gfx.cpp Gfx.h Globals.cpp Globals.h Mode0.cpp Mode1.cpp Mode2.cpp Mode3.cpp Mode4.cpp Mode5.cpp NLS.h Port.h RTC.cpp RTC.h Sound.cpp Sound.h Sram.cpp Sram.h System.h Text.h Util.cpp Util.h agbprint.cpp agbprint.h arm-new.h armdis.cpp armdis.h bilinear.cpp bios.cpp bios.h elf.cpp elf.h exprNode.cpp exprNode.h interframe.cpp motionblur.cpp pixel.cpp remote.cpp scanline.cpp simple2x.cpp thumb.h unzip.cpp unzip.h Log Message: Updated the copyright notice to 2004. Index: interframe.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/interframe.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** interframe.cpp 4 Nov 2003 14:11:52 -0000 1.7 --- interframe.cpp 13 May 2004 15:06:45 -0000 1.8 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #include "System.h" #include <stdlib.h> --- 1,20 ---- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #include "System.h" #include <stdlib.h> Index: elf.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/elf.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** elf.h 4 Nov 2003 14:11:52 -0000 1.3 --- elf.h 13 May 2004 15:06:45 -0000 1.4 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #ifndef VBA_ELF_H #define VBA_ELF_H --- 1,21 ---- ! // -*- C++ -*- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #ifndef VBA_ELF_H #define VBA_ELF_H Index: thumb.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/thumb.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** thumb.h 20 Mar 2004 00:18:34 -0000 1.10 --- thumb.h 13 May 2004 15:06:45 -0000 1.11 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #ifdef C_CORE #define NEG(i) ((i) >> 31) --- 1,21 ---- ! // -*- C++ -*- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #ifdef C_CORE #define NEG(i) ((i) >> 31) Index: agbprint.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/agbprint.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** agbprint.cpp 9 Aug 2003 11:41:50 -0000 1.2 --- agbprint.cpp 13 May 2004 15:06:44 -0000 1.3 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #include <stdio.h> #include <string.h> --- 1,20 ---- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #include <stdio.h> #include <string.h> Index: elf.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/elf.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** elf.cpp 5 May 2004 16:01:11 -0000 1.17 --- elf.cpp 13 May 2004 15:06:45 -0000 1.18 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #include <stdio.h> #include <stdlib.h> --- 1,20 ---- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #include <stdio.h> #include <stdlib.h> Index: motionblur.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/motionblur.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** motionblur.cpp 26 Jan 2004 02:12:15 -0000 1.8 --- motionblur.cpp 13 May 2004 15:06:45 -0000 1.9 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #include "System.h" --- 1,20 ---- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #include "System.h" Index: GBA.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/GBA.h,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** GBA.h 28 Jan 2004 17:44:50 -0000 1.18 --- GBA.h 13 May 2004 15:06:43 -0000 1.19 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #ifndef VBA_GBA_H #define VBA_GBA_H --- 1,21 ---- ! // -*- C++ -*- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #ifndef VBA_GBA_H #define VBA_GBA_H Index: simple2x.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/simple2x.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** simple2x.cpp 26 Jan 2004 02:12:15 -0000 1.9 --- simple2x.cpp 13 May 2004 15:06:45 -0000 1.10 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #include "System.h" --- 1,20 ---- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #include "System.h" Index: pixel.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/pixel.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** pixel.cpp 26 Jan 2004 02:12:15 -0000 1.9 --- pixel.cpp 13 May 2004 15:06:45 -0000 1.10 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #include "System.h" --- 1,20 ---- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #include "System.h" Index: Mode3.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Mode3.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Mode3.cpp 4 Nov 2003 14:11:52 -0000 1.4 --- Mode3.cpp 13 May 2004 15:06:44 -0000 1.5 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #include "GBA.h" #include "Globals.h" --- 1,20 ---- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #include "GBA.h" #include "Globals.h" Index: EEprom.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/EEprom.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** EEprom.cpp 5 Feb 2004 11:38:30 -0000 1.5 --- EEprom.cpp 13 May 2004 15:06:43 -0000 1.6 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #include "GBA.h" #include "EEprom.h" --- 1,20 ---- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #include "GBA.h" #include "EEprom.h" Index: Sram.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Sram.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Sram.h 20 Oct 2002 13:03:12 -0000 1.1 --- Sram.h 13 May 2004 15:06:44 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #ifndef VBA_SRAM_H #define VBA_SRAM_H --- 1,21 ---- ! // -*- C++ -*- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #ifndef VBA_SRAM_H #define VBA_SRAM_H Index: bios.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/bios.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** bios.cpp 20 Jan 2004 02:12:49 -0000 1.11 --- bios.cpp 13 May 2004 15:06:45 -0000 1.12 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #include <math.h> #include <memory.h> --- 1,20 ---- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #include <math.h> #include <memory.h> Index: Mode1.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Mode1.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Mode1.cpp 4 Nov 2003 14:11:52 -0000 1.4 --- Mode1.cpp 13 May 2004 15:06:44 -0000 1.5 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #include "GBA.h" #include "Globals.h" --- 1,20 ---- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #include "GBA.h" #include "Globals.h" Index: unzip.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/unzip.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** unzip.h 20 Oct 2002 13:03:12 -0000 1.1 --- unzip.h 13 May 2004 15:06:45 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ /* unzip.h -- IO for uncompress .zip files using zlib Version 0.15 beta, Mar 19th, 1998, --- 1,21 ---- ! // -*- C++ -*- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! /* unzip.h -- IO for uncompress .zip files using zlib Version 0.15 beta, Mar 19th, 1998, Index: bilinear.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/bilinear.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** bilinear.cpp 26 Jan 2004 02:12:15 -0000 1.3 --- bilinear.cpp 13 May 2004 15:06:45 -0000 1.4 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ /** Code adapted from Exult source code by Forgotten ** Scale.cc - Trying to scale with bilinear interpolation. --- 1,20 ---- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! /** Code adapted from Exult source code by Forgotten ** Scale.cc - Trying to scale with bilinear interpolation. Index: CheatSearch.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/CheatSearch.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CheatSearch.h 4 Nov 2003 14:11:52 -0000 1.1 --- CheatSearch.h 13 May 2004 15:06:43 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2003 Forgotten (vb...@em...) ! * ! * 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 ! */ #ifndef VBA_CHEATSEARCH_H #define VBA_CHEATSEARCH_H --- 1,21 ---- ! // -*- C++ -*- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #ifndef VBA_CHEATSEARCH_H #define VBA_CHEATSEARCH_H Index: Port.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Port.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Port.h 21 Jan 2004 01:01:34 -0000 1.4 --- Port.h 13 May 2004 15:06:44 -0000 1.5 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #ifndef VBA_PORT_H #define VBA_PORT_H --- 1,21 ---- ! // -*- C++ -*- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #ifndef VBA_PORT_H #define VBA_PORT_H Index: Mode5.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Mode5.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Mode5.cpp 4 Nov 2003 14:11:52 -0000 1.4 --- Mode5.cpp 13 May 2004 15:06:44 -0000 1.5 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #include "GBA.h" #include "Globals.h" --- 1,20 ---- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #include "GBA.h" #include "Globals.h" Index: GBA.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/GBA.cpp,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** GBA.cpp 5 May 2004 16:01:11 -0000 1.54 --- GBA.cpp 13 May 2004 15:06:43 -0000 1.55 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #include <stdio.h> #include <stdlib.h> --- 1,20 ---- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #include <stdio.h> #include <stdlib.h> Index: RTC.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/RTC.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RTC.h 7 Apr 2003 12:42:19 -0000 1.1 --- RTC.h 13 May 2004 15:06:44 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #ifndef VBA_RTC_H #define VBA_RTC_H --- 1,21 ---- ! // -*- C++ -*- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #ifndef VBA_RTC_H #define VBA_RTC_H Index: armdis.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/armdis.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** armdis.h 20 Oct 2002 13:03:12 -0000 1.1 --- armdis.h 13 May 2004 15:06:45 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ /************************************************************************/ /* Arm/Thumb command set disassembler */ --- 1,21 ---- ! // -*- C++ -*- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! /************************************************************************/ /* Arm/Thumb command set disassembler */ Index: AutoBuild.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/AutoBuild.h,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** AutoBuild.h 25 Jan 2004 13:46:22 -0000 1.13 --- AutoBuild.h 13 May 2004 15:06:43 -0000 1.14 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #ifndef __AUTOBUILD_H__ #define __AUTOBUILD_H__ --- 1,21 ---- ! // -*- C++ -*- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #ifndef __AUTOBUILD_H__ #define __AUTOBUILD_H__ Index: Globals.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Globals.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Globals.cpp 20 Nov 2003 02:37:40 -0000 1.7 --- Globals.cpp 13 May 2004 15:06:44 -0000 1.8 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #include "GBA.h" --- 1,20 ---- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #include "GBA.h" Index: Globals.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/Globals.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Globals.h 20 Nov 2003 02:37:40 -0000 1.6 --- Globals.h 13 May 2004 15:06:44 -0000 1.7 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #ifndef VBA_GLOBALS_H #define VBA_GLOBALS_H --- 1,21 ---- ! // -*- C++ -*- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! #ifndef VBA_GLOBALS_H #define VBA_GLOBALS_H Index: exprNode.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/exprNode.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** exprNode.h 20 Oct 2002 13:03:12 -0000 1.1 --- exprNode.h 13 May 2004 15:06:45 -0000 1.2 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ struct Node { Type *type; --- 1,21 ---- ! // -*- C++ -*- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // 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, 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. ! struct Node { Type *type; Index: arm-new.h =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/arm-new.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** arm-new.h 29 Mar 2004 22:07:47 -0000 1.10 --- arm-new.h 13 May 2004 15:06:44 -0000 1.11 *************** *** 1,20 **** ! /* ! * VisualBoyAdvanced - Nintendo Gameboy/GameboyAdvance (TM) emulator ! * Copyrigh(c) 1999-2002 Forgotten (vb...@em...) ! * ! * 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 ! */ #ifdef BKPT_SUPPORT #define CONSOLE_OUTPUT(a,b) \ --- 1,21 ---- ! // -*- C++ -*- ! // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. ! // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team ! ! // This program is free software; you can ... [truncated message content] |