X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=Cyclone%2FMain.cpp;h=0e031697864af16d524bc719fbf036192ebbafc2;hb=7441f043a0ba83bd919db25bf3b8e35ae635012a;hp=10d9c9346c2e1e669217a23d6e69863ab3034980;hpb=619b18243b9bf12ea1b3880ace8eba33030d5501;p=cyclone68000.git diff --git a/Cyclone/Main.cpp b/Cyclone/Main.cpp index 10d9c93..0e03169 100644 --- a/Cyclone/Main.cpp +++ b/Cyclone/Main.cpp @@ -1,6 +1,8 @@ // This file is part of the Cyclone 68000 Emulator +// Copyright (c) 2011 FinalDave (emudave (at) gmail.com) + // This code is licensed under the GNU General Public License version 2.0 and the MAME License. // You can choose the license that has the most advantages for you. @@ -20,9 +22,9 @@ int Amatch=1; // If one, try to match A68K timing int Accu=-1; // Accuracy int Debug=0; // Debug info -void ot(char *format, ...) +void ot(const char *format, ...) { - va_list valist=NULL; + va_list valist; va_start(valist,format); if (AsmFile) vfprintf(AsmFile,format,valist); va_end(valist); @@ -233,6 +235,8 @@ static int CycloneMake() ot("\n;@ Cyclone 68000 Emulator v%x.%.3x - Assembler Output\n\n",CycloneVer>>12,CycloneVer&0xfff); + ot(";@ Copyright (c) 2011 FinalDave (emudave (at) gmail.com)\n\n"); + ot(";@ This code is licensed under the GNU General Public License version 2.0 and the MAME License.\n"); ot(";@ You can choose the license that has the most advantages for you.\n\n"); ot(";@ SVN repository can be found at http://code.google.com/p/cyclone68000/\n\n");