diff options
author | 2008-01-06 00:47:40 +0000 | |
---|---|---|
committer | 2008-01-06 00:47:40 +0000 | |
commit | ee9f88963c0f29029334fffc12c91cf758c2464c (patch) | |
tree | 85a5a2e967364e9b4fd22087e4b608ec29f158ff /src/emu/cpu/saturn | |
parent | 33eeead1da2f6c80967a6c607c12f9964e4988b4 (diff) |
Copyright cleanup:
- removed years from copyright notices
- removed redundant (c) from copyright notices
- updated "the MAME Team" to be "Nicola Salmoria and the MAME Team"
Diffstat (limited to 'src/emu/cpu/saturn')
-rw-r--r-- | src/emu/cpu/saturn/saturn.c | 4 | ||||
-rw-r--r-- | src/emu/cpu/saturn/saturn.h | 2 | ||||
-rw-r--r-- | src/emu/cpu/saturn/saturnds.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/cpu/saturn/saturn.c b/src/emu/cpu/saturn/saturn.c index dc8fc0f6cf7..a6cb870ca7c 100644 --- a/src/emu/cpu/saturn/saturn.c +++ b/src/emu/cpu/saturn/saturn.c @@ -4,7 +4,7 @@ * portable saturn emulator interface * (hp calculators) * - * Copyright (c) 2000 Peter Trauner, all rights reserved. + * Copyright Peter Trauner, all rights reserved. * * - This source code is released as freeware for non-commercial purposes. * - You are free to use and redistribute this code in modified or @@ -386,7 +386,7 @@ void saturn_get_info(UINT32 state, cpuinfo *info) case CPUINFO_STR_CORE_FAMILY: strcpy(info->s = cpuintrf_temp_str(), "Saturn"); break; case CPUINFO_STR_CORE_VERSION: strcpy(info->s = cpuintrf_temp_str(), "1.0alpha"); break; case CPUINFO_STR_CORE_FILE: strcpy(info->s = cpuintrf_temp_str(), __FILE__); break; - case CPUINFO_STR_CORE_CREDITS: strcpy(info->s = cpuintrf_temp_str(), "Copyright (c) 2000 Peter Trauner, all rights reserved."); break; + case CPUINFO_STR_CORE_CREDITS: strcpy(info->s = cpuintrf_temp_str(), "Copyright Peter Trauner, all rights reserved."); break; case CPUINFO_STR_REGISTER + SATURN_PC: sprintf(info->s = cpuintrf_temp_str(), "PC: %.5x", saturn.pc);break; case CPUINFO_STR_REGISTER + SATURN_D0: sprintf(info->s = cpuintrf_temp_str(), "D0: %.5x", saturn.d[0]);break; diff --git a/src/emu/cpu/saturn/saturn.h b/src/emu/cpu/saturn/saturn.h index 85e66a68536..fc53b32ef1b 100644 --- a/src/emu/cpu/saturn/saturn.h +++ b/src/emu/cpu/saturn/saturn.h @@ -4,7 +4,7 @@ * portable saturn emulator interface * (hp calculators) * - * Copyright (c) 2000 Peter Trauner, all rights reserved. + * Copyright Peter Trauner, all rights reserved. * * - This source code is released as freeware for non-commercial purposes. * - You are free to use and redistribute this code in modified or diff --git a/src/emu/cpu/saturn/saturnds.c b/src/emu/cpu/saturn/saturnds.c index 15f113035d3..dc92b7b7e29 100644 --- a/src/emu/cpu/saturn/saturnds.c +++ b/src/emu/cpu/saturn/saturnds.c @@ -4,7 +4,7 @@ * portable saturn emulator interface * (hp calculators) * - * Copyright (c) 2000 Peter Trauner, all rights reserved. + * Copyright Peter Trauner, all rights reserved. * * - This source code is released as freeware for non-commercial purposes. * - You are free to use and redistribute this code in modified or |