diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..ace1c5e --- /dev/null +++ b/.gitattributes @@ -0,0 +1,19 @@ +# Set the default behavior for files +* text=lf + +# Explicitly declare text files you want to always be normalized and converted +# to native line endings on checkout +*.md text +*.txt text +*.c text +*.h text +*.s text +*.cmake text +*.pro text +*.ui text +*.asm text +*.in text + +# Denote all files that are truly binary and should not be modified +*.pdf binary +*.png binary diff --git a/.gitignore b/.gitignore index b15d1eb..8accecb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,13 @@ -# Other data. +# Other data # /data -# Build files. +# Build files # /build -# Swap files. +# Swap files # *.swp -# Qt files. +# Qt files # /debugger/cen64d /debugger/*.o @@ -17,3 +17,83 @@ /debugger/ui_main_window.h +# Compiled source/binaries # +###################### +*.com +*.bat +*.class +*.dll +*.exe +*.o +*.so +*.deb +*.rpm +*.msi +*.msm +*.msp +*.dat +*.elf +*.pkg + +# Archives # +###################### +*.7z +*.dmg +*.gz +*.iso +*.jar +*.rar +*.tar +*.zip +*.bzip +*.bz2 +*.xz +*.lzma +*.cab + +# Backups # +###################### +*.bak + +# Logs and databases # +###################### +*.log +*.sql +*.sqlite + +# OS generated files # +###################### +.DS_Store +.DS_Store? +._* +*~ +.Spotlight-V100 +.Trashes +ehthumbs.db +[Tt]humbs.db +Desktop.ini +$RECYCLE.BIN/ +.AppleDouble +.LSOverride +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.directory + +# CVS # +###################### +/CVS/* +*/CVS/* +.cvsignore +*/.cvsignore + +# Mercurial/HG # +###################### +/.hg/* +*/.hg/* +.hgignore + +# SVN # +###################### +.svn/ diff --git a/CMakeLists.txt b/CMakeLists.txt index 96a73c7..6a8c7f8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # -# CEN64: Cycle-Accurate Nintendo 64 Simulator. -# Copyright (C) 2014, Tyler J. Stachecki. +# CEN64: Cycle-Accurate Nintendo 64 Emulator. +# Copyright (C) 2015, Tyler J. Stachecki. # # This file is subject to the terms and conditions defined in # 'LICENSE', which is part of this source code package. diff --git a/LICENSE b/LICENSE index ec0ac4f..a8a0066 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2014, Tyler J. Stachecki +Copyright (c) 2015, Tyler J. Stachecki All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/ai/context.c b/ai/context.c index 41e464b..07e35d6 100644 --- a/ai/context.c +++ b/ai/context.c @@ -1,8 +1,8 @@ // // ai/context.c: Sound card context management. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/ai/context.h b/ai/context.h index e44d02c..2d78d8a 100644 --- a/ai/context.h +++ b/ai/context.h @@ -1,8 +1,8 @@ // // ai/context.h: Sound card context management. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/ai/controller.c b/ai/controller.c index fdb155e..805801e 100644 --- a/ai/controller.c +++ b/ai/controller.c @@ -1,8 +1,8 @@ // // ai/controller.c: Audio interface controller. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/ai/controller.h b/ai/controller.h index d68b9ea..5f25a78 100644 --- a/ai/controller.h +++ b/ai/controller.h @@ -1,8 +1,8 @@ // // ai/controller.h: Audio interface controller. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/ai/registers.md b/ai/registers.md index 38098c5..c1d7175 100644 --- a/ai/registers.md +++ b/ai/registers.md @@ -2,7 +2,7 @@ // ai/registers.md: AI register enumerations. // // CEN64: Cycle-Accurate Nintendo 64 Emulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/context.h b/arch/x86_64/context.h index 759d82a..0e8bcb5 100644 --- a/arch/x86_64/context.h +++ b/arch/x86_64/context.h @@ -1,8 +1,8 @@ // // arch/x86_64/context.h // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/gcc/context.s b/arch/x86_64/gcc/context.s index 8a954dc..71499e7 100644 --- a/arch/x86_64/gcc/context.s +++ b/arch/x86_64/gcc/context.s @@ -1,8 +1,8 @@ // // arch/x86_64/gcc/context.s // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/rsp/gcc/defs.h b/arch/x86_64/rsp/gcc/defs.h index fd62467..5f7c50d 100644 --- a/arch/x86_64/rsp/gcc/defs.h +++ b/arch/x86_64/rsp/gcc/defs.h @@ -1,8 +1,8 @@ // // arch/x86_64/rsp/gcc/defs.h // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/rsp/gcc/vabs.s b/arch/x86_64/rsp/gcc/vabs.s index 9660aec..6a816d7 100644 --- a/arch/x86_64/rsp/gcc/vabs.s +++ b/arch/x86_64/rsp/gcc/vabs.s @@ -1,8 +1,8 @@ // // arch/x86_64/rsp/gcc/vabs.s // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/rsp/gcc/vand.s b/arch/x86_64/rsp/gcc/vand.s index d4f8e8d..33dce35 100644 --- a/arch/x86_64/rsp/gcc/vand.s +++ b/arch/x86_64/rsp/gcc/vand.s @@ -1,8 +1,8 @@ // // arch/x86_64/rsp/gcc/vand.s // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/rsp/gcc/vch.s b/arch/x86_64/rsp/gcc/vch.s index 200b952..22fc552 100644 --- a/arch/x86_64/rsp/gcc/vch.s +++ b/arch/x86_64/rsp/gcc/vch.s @@ -1,8 +1,8 @@ // // arch/x86_64/rsp/gcc/vch.s // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/rsp/gcc/veq.s b/arch/x86_64/rsp/gcc/veq.s index 135bb7e..5a13f75 100644 --- a/arch/x86_64/rsp/gcc/veq.s +++ b/arch/x86_64/rsp/gcc/veq.s @@ -1,8 +1,8 @@ // // arch/x86_64/rsp/gcc/veq.s // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/rsp/gcc/vge.s b/arch/x86_64/rsp/gcc/vge.s index 2f52dc8..41cc809 100644 --- a/arch/x86_64/rsp/gcc/vge.s +++ b/arch/x86_64/rsp/gcc/vge.s @@ -1,8 +1,8 @@ // // arch/x86_64/rsp/gcc/vge.s // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/rsp/gcc/vlt.s b/arch/x86_64/rsp/gcc/vlt.s index 0dd55cd..a94ae63 100644 --- a/arch/x86_64/rsp/gcc/vlt.s +++ b/arch/x86_64/rsp/gcc/vlt.s @@ -1,8 +1,8 @@ // // arch/x86_64/rsp/gcc/vlt.s // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/rsp/gcc/vmrg.s b/arch/x86_64/rsp/gcc/vmrg.s index c137344..1271de8 100644 --- a/arch/x86_64/rsp/gcc/vmrg.s +++ b/arch/x86_64/rsp/gcc/vmrg.s @@ -1,8 +1,8 @@ // // arch/x86_64/rsp/gcc/vmrg.s // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/rsp/gcc/vnand.s b/arch/x86_64/rsp/gcc/vnand.s index 38478f3..e43fc6f 100644 --- a/arch/x86_64/rsp/gcc/vnand.s +++ b/arch/x86_64/rsp/gcc/vnand.s @@ -1,8 +1,8 @@ // // arch/x86_64/rsp/gcc/vnand.s // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/rsp/gcc/vne.s b/arch/x86_64/rsp/gcc/vne.s index 0c5fea8..853b34f 100644 --- a/arch/x86_64/rsp/gcc/vne.s +++ b/arch/x86_64/rsp/gcc/vne.s @@ -1,8 +1,8 @@ // // arch/x86_64/rsp/gcc/vne.s // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/rsp/gcc/vnor.s b/arch/x86_64/rsp/gcc/vnor.s index 1f47f44..8cc0574 100644 --- a/arch/x86_64/rsp/gcc/vnor.s +++ b/arch/x86_64/rsp/gcc/vnor.s @@ -1,8 +1,8 @@ // // arch/x86_64/rsp/gcc/vnor.s // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/rsp/gcc/vnxor.s b/arch/x86_64/rsp/gcc/vnxor.s index f55f263..eadb267 100644 --- a/arch/x86_64/rsp/gcc/vnxor.s +++ b/arch/x86_64/rsp/gcc/vnxor.s @@ -1,8 +1,8 @@ // // arch/x86_64/rsp/gcc/vnxor.s // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/rsp/gcc/vor.s b/arch/x86_64/rsp/gcc/vor.s index 4e18136..bf1d4a1 100644 --- a/arch/x86_64/rsp/gcc/vor.s +++ b/arch/x86_64/rsp/gcc/vor.s @@ -1,8 +1,8 @@ // // arch/x86_64/rsp/gcc/vor.s // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/rsp/gcc/vxor.s b/arch/x86_64/rsp/gcc/vxor.s index cbaa990..d99a641 100644 --- a/arch/x86_64/rsp/gcc/vxor.s +++ b/arch/x86_64/rsp/gcc/vxor.s @@ -1,8 +1,8 @@ // // arch/x86_64/rsp/gcc/vxor.s // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/tlb/tlb.c b/arch/x86_64/tlb/tlb.c index 4038f12..a3eadd8 100644 --- a/arch/x86_64/tlb/tlb.c +++ b/arch/x86_64/tlb/tlb.c @@ -1,8 +1,8 @@ // // arch/x86_64/tlb/tlb.c: Translation lookaside buffer. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/arch/x86_64/tlb/tlb.h b/arch/x86_64/tlb/tlb.h index 86c2f93..2ccacd0 100644 --- a/arch/x86_64/tlb/tlb.h +++ b/arch/x86_64/tlb/tlb.h @@ -1,8 +1,8 @@ // // arch/x86_64/tlb/tlb.h: Translation lookaside buffer. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/bus/address.h b/bus/address.h index 98f2783..ffb35e4 100644 --- a/bus/address.h +++ b/bus/address.h @@ -1,8 +1,8 @@ // // bus/address.h: System bus address ranges. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/bus/controller.c b/bus/controller.c index d9a8cd0..4e23dbe 100644 --- a/bus/controller.c +++ b/bus/controller.c @@ -1,8 +1,8 @@ // // bus/controller.c: System bus controller. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/bus/controller.h b/bus/controller.h index f852a3a..914f492 100644 --- a/bus/controller.h +++ b/bus/controller.h @@ -1,8 +1,8 @@ // // bus/controller.h: System bus controller. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/bus/memorymap.c b/bus/memorymap.c index 5f3ca37..326d6e7 100644 --- a/bus/memorymap.c +++ b/bus/memorymap.c @@ -1,8 +1,8 @@ // // bus/memorymap.c: System memory mapper. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/bus/memorymap.h b/bus/memorymap.h index eebd402..b9072b2 100644 --- a/bus/memorymap.h +++ b/bus/memorymap.h @@ -1,8 +1,8 @@ // // bus/memory_map.h: System memory mapper. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/cen64.c b/cen64.c index 383b0d7..82430a1 100644 --- a/cen64.c +++ b/cen64.c @@ -1,8 +1,8 @@ // // cen64.c: CEN64 entry point. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/cen64.h b/cen64.h index 6acce21..b9930d1 100644 --- a/cen64.h +++ b/cen64.h @@ -1,8 +1,8 @@ // // cen64.h: CEN64 entry point. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/common.h.in b/common.h.in index f28d6a1..b516e38 100644 --- a/common.h.in +++ b/common.h.in @@ -1,8 +1,8 @@ // // common.h: Common definitions and such. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/common/one_hot.c b/common/one_hot.c index 52fa94d..fb5b3bf 100644 --- a/common/one_hot.c +++ b/common/one_hot.c @@ -1,8 +1,8 @@ // // vr4300/one_hot.c: 8-bit one-hot LUT. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/common/reciprocal.c b/common/reciprocal.c index 961972a..90c1f37 100644 --- a/common/reciprocal.c +++ b/common/reciprocal.c @@ -1,144 +1,144 @@ -// -// common/reciprocal.c: RSP reciprocal ROM contents. -// -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. -// -// This file is subject to the terms and conditions defined in -// 'LICENSE', which is part of this source code package. -// - -#include "common.h" -#include "common/reciprocal.h" - -cen64_align(const uint16_t rsp_reciprocal_rom[1024], CACHE_LINE_SIZE) = { - 0xFFFF, 0xFF00, 0xFE01, 0xFD04, 0xFC07, 0xFB0C, 0xFA11, 0xF918, - 0xF81F, 0xF727, 0xF631, 0xF53B, 0xF446, 0xF352, 0xF25F, 0xF16D, - 0xF07C, 0xEF8B, 0xEE9C, 0xEDAE, 0xECC0, 0xEBD3, 0xEAE8, 0xE9FD, - 0xE913, 0xE829, 0xE741, 0xE65A, 0xE573, 0xE48D, 0xE3A9, 0xE2C5, - 0xE1E1, 0xE0FF, 0xE01E, 0xDF3D, 0xDE5D, 0xDD7E, 0xDCA0, 0xDBC2, - 0xDAE6, 0xDA0A, 0xD92F, 0xD854, 0xD77B, 0xD6A2, 0xD5CA, 0xD4F3, - 0xD41D, 0xD347, 0xD272, 0xD19E, 0xD0CB, 0xCFF8, 0xCF26, 0xCE55, - 0xCD85, 0xCCB5, 0xCBE6, 0xCB18, 0xCA4B, 0xC97E, 0xC8B2, 0xC7E7, - 0xC71C, 0xC652, 0xC589, 0xC4C0, 0xC3F8, 0xC331, 0xC26B, 0xC1A5, - 0xC0E0, 0xC01C, 0xBF58, 0xBE95, 0xBDD2, 0xBD10, 0xBC4F, 0xBB8F, - 0xBACF, 0xBA10, 0xB951, 0xB894, 0xB7D6, 0xB71A, 0xB65E, 0xB5A2, - 0xB4E8, 0xB42E, 0xB374, 0xB2BB, 0xB203, 0xB14B, 0xB094, 0xAFDE, - 0xAF28, 0xAE73, 0xADBE, 0xAD0A, 0xAC57, 0xABA4, 0xAAF1, 0xAA40, - 0xA98E, 0xA8DE, 0xA82E, 0xA77E, 0xA6D0, 0xA621, 0xA574, 0xA4C6, - 0xA41A, 0xA36E, 0xA2C2, 0xA217, 0xA16D, 0xA0C3, 0xA01A, 0x9F71, - 0x9EC8, 0x9E21, 0x9D79, 0x9CD3, 0x9C2D, 0x9B87, 0x9AE2, 0x9A3D, - 0x9999, 0x98F6, 0x9852, 0x97B0, 0x970E, 0x966C, 0x95CB, 0x952B, - 0x948B, 0x93EB, 0x934C, 0x92AD, 0x920F, 0x9172, 0x90D4, 0x9038, - 0x8F9C, 0x8F00, 0x8E65, 0x8DCA, 0x8D30, 0x8C96, 0x8BFC, 0x8B64, - 0x8ACB, 0x8A33, 0x899C, 0x8904, 0x886E, 0x87D8, 0x8742, 0x86AD, - 0x8618, 0x8583, 0x84F0, 0x845C, 0x83C9, 0x8336, 0x82A4, 0x8212, - 0x8181, 0x80F0, 0x8060, 0x7FD0, 0x7F40, 0x7EB1, 0x7E22, 0x7D93, - 0x7D05, 0x7C78, 0x7BEB, 0x7B5E, 0x7AD2, 0x7A46, 0x79BA, 0x792F, - 0x78A4, 0x781A, 0x7790, 0x7706, 0x767D, 0x75F5, 0x756C, 0x74E4, - 0x745D, 0x73D5, 0x734F, 0x72C8, 0x7242, 0x71BC, 0x7137, 0x70B2, - 0x702E, 0x6FA9, 0x6F26, 0x6EA2, 0x6E1F, 0x6D9C, 0x6D1A, 0x6C98, - 0x6C16, 0x6B95, 0x6B14, 0x6A94, 0x6A13, 0x6993, 0x6914, 0x6895, - 0x6816, 0x6798, 0x6719, 0x669C, 0x661E, 0x65A1, 0x6524, 0x64A8, - 0x642C, 0x63B0, 0x6335, 0x62BA, 0x623F, 0x61C5, 0x614B, 0x60D1, - 0x6058, 0x5FDF, 0x5F66, 0x5EED, 0x5E75, 0x5DFD, 0x5D86, 0x5D0F, - 0x5C98, 0x5C22, 0x5BAB, 0x5B35, 0x5AC0, 0x5A4B, 0x59D6, 0x5961, - 0x58ED, 0x5879, 0x5805, 0x5791, 0x571E, 0x56AC, 0x5639, 0x55C7, - 0x5555, 0x54E3, 0x5472, 0x5401, 0x5390, 0x5320, 0x52AF, 0x5240, - 0x51D0, 0x5161, 0x50F2, 0x5083, 0x5015, 0x4FA6, 0x4F38, 0x4ECB, - 0x4E5E, 0x4DF1, 0x4D84, 0x4D17, 0x4CAB, 0x4C3F, 0x4BD3, 0x4B68, - 0x4AFD, 0x4A92, 0x4A27, 0x49BD, 0x4953, 0x48E9, 0x4880, 0x4817, - 0x47AE, 0x4745, 0x46DC, 0x4674, 0x460C, 0x45A5, 0x453D, 0x44D6, - 0x446F, 0x4408, 0x43A2, 0x433C, 0x42D6, 0x4270, 0x420B, 0x41A6, - 0x4141, 0x40DC, 0x4078, 0x4014, 0x3FB0, 0x3F4C, 0x3EE8, 0x3E85, - 0x3E22, 0x3DC0, 0x3D5D, 0x3CFB, 0x3C99, 0x3C37, 0x3BD6, 0x3B74, - 0x3B13, 0x3AB2, 0x3A52, 0x39F1, 0x3991, 0x3931, 0x38D2, 0x3872, - 0x3813, 0x37B4, 0x3755, 0x36F7, 0x3698, 0x363A, 0x35DC, 0x357F, - 0x3521, 0x34C4, 0x3467, 0x340A, 0x33AE, 0x3351, 0x32F5, 0x3299, - 0x323E, 0x31E2, 0x3187, 0x312C, 0x30D1, 0x3076, 0x301C, 0x2FC2, - 0x2F68, 0x2F0E, 0x2EB4, 0x2E5B, 0x2E02, 0x2DA9, 0x2D50, 0x2CF8, - 0x2C9F, 0x2C47, 0x2BEF, 0x2B97, 0x2B40, 0x2AE8, 0x2A91, 0x2A3A, - 0x29E4, 0x298D, 0x2937, 0x28E0, 0x288B, 0x2835, 0x27DF, 0x278A, - 0x2735, 0x26E0, 0x268B, 0x2636, 0x25E2, 0x258D, 0x2539, 0x24E5, - 0x2492, 0x243E, 0x23EB, 0x2398, 0x2345, 0x22F2, 0x22A0, 0x224D, - 0x21FB, 0x21A9, 0x2157, 0x2105, 0x20B4, 0x2063, 0x2012, 0x1FC1, - 0x1F70, 0x1F1F, 0x1ECF, 0x1E7F, 0x1E2E, 0x1DDF, 0x1D8F, 0x1D3F, - 0x1CF0, 0x1CA1, 0x1C52, 0x1C03, 0x1BB4, 0x1B66, 0x1B17, 0x1AC9, - 0x1A7B, 0x1A2D, 0x19E0, 0x1992, 0x1945, 0x18F8, 0x18AB, 0x185E, - 0x1811, 0x17C4, 0x1778, 0x172C, 0x16E0, 0x1694, 0x1648, 0x15FD, - 0x15B1, 0x1566, 0x151B, 0x14D0, 0x1485, 0x143B, 0x13F0, 0x13A6, - 0x135C, 0x1312, 0x12C8, 0x127F, 0x1235, 0x11EC, 0x11A3, 0x1159, - 0x1111, 0x10C8, 0x107F, 0x1037, 0x0FEF, 0x0FA6, 0x0F5E, 0x0F17, - 0x0ECF, 0x0E87, 0x0E40, 0x0DF9, 0x0DB2, 0x0D6B, 0x0D24, 0x0CDD, - 0x0C97, 0x0C50, 0x0C0A, 0x0BC4, 0x0B7E, 0x0B38, 0x0AF2, 0x0AAD, - 0x0A68, 0x0A22, 0x09DD, 0x0998, 0x0953, 0x090F, 0x08CA, 0x0886, - 0x0842, 0x07FD, 0x07B9, 0x0776, 0x0732, 0x06EE, 0x06AB, 0x0668, - 0x0624, 0x05E1, 0x059E, 0x055C, 0x0519, 0x04D6, 0x0494, 0x0452, - 0x0410, 0x03CE, 0x038C, 0x034A, 0x0309, 0x02C7, 0x0286, 0x0245, - 0x0204, 0x01C3, 0x0182, 0x0141, 0x0101, 0x00C0, 0x0080, 0x0040, - 0x6A09, 0xFFFF, 0x6955, 0xFF00, 0x68A1, 0xFE02, 0x67EF, 0xFD06, - 0x673E, 0xFC0B, 0x668D, 0xFB12, 0x65DE, 0xFA1A, 0x6530, 0xF923, - 0x6482, 0xF82E, 0x63D6, 0xF73B, 0x632B, 0xF648, 0x6280, 0xF557, - 0x61D7, 0xF467, 0x612E, 0xF379, 0x6087, 0xF28C, 0x5FE0, 0xF1A0, - 0x5F3A, 0xF0B6, 0x5E95, 0xEFCD, 0x5DF1, 0xEEE5, 0x5D4E, 0xEDFF, - 0x5CAC, 0xED19, 0x5C0B, 0xEC35, 0x5B6B, 0xEB52, 0x5ACB, 0xEA71, - 0x5A2C, 0xE990, 0x598F, 0xE8B1, 0x58F2, 0xE7D3, 0x5855, 0xE6F6, - 0x57BA, 0xE61B, 0x5720, 0xE540, 0x5686, 0xE467, 0x55ED, 0xE38E, - 0x5555, 0xE2B7, 0x54BE, 0xE1E1, 0x5427, 0xE10D, 0x5391, 0xE039, - 0x52FC, 0xDF66, 0x5268, 0xDE94, 0x51D5, 0xDDC4, 0x5142, 0xDCF4, - 0x50B0, 0xDC26, 0x501F, 0xDB59, 0x4F8E, 0xDA8C, 0x4EFE, 0xD9C1, - 0x4E6F, 0xD8F7, 0x4DE1, 0xD82D, 0x4D53, 0xD765, 0x4CC6, 0xD69E, - 0x4C3A, 0xD5D7, 0x4BAF, 0xD512, 0x4B24, 0xD44E, 0x4A9A, 0xD38A, - 0x4A10, 0xD2C8, 0x4987, 0xD206, 0x48FF, 0xD146, 0x4878, 0xD086, - 0x47F1, 0xCFC7, 0x476B, 0xCF0A, 0x46E5, 0xCE4D, 0x4660, 0xCD91, - 0x45DC, 0xCCD6, 0x4558, 0xCC1B, 0x44D5, 0xCB62, 0x4453, 0xCAA9, - 0x43D1, 0xC9F2, 0x434F, 0xC93B, 0x42CF, 0xC885, 0x424F, 0xC7D0, - 0x41CF, 0xC71C, 0x4151, 0xC669, 0x40D2, 0xC5B6, 0x4055, 0xC504, - 0x3FD8, 0xC453, 0x3F5B, 0xC3A3, 0x3EDF, 0xC2F4, 0x3E64, 0xC245, - 0x3DE9, 0xC198, 0x3D6E, 0xC0EB, 0x3CF5, 0xC03F, 0x3C7C, 0xBF93, - 0x3C03, 0xBEE9, 0x3B8B, 0xBE3F, 0x3B13, 0xBD96, 0x3A9C, 0xBCED, - 0x3A26, 0xBC46, 0x39B0, 0xBB9F, 0x393A, 0xBAF8, 0x38C5, 0xBA53, - 0x3851, 0xB9AE, 0x37DD, 0xB90A, 0x3769, 0xB867, 0x36F6, 0xB7C5, - 0x3684, 0xB723, 0x3612, 0xB681, 0x35A0, 0xB5E1, 0x352F, 0xB541, - 0x34BF, 0xB4A2, 0x344F, 0xB404, 0x33DF, 0xB366, 0x3370, 0xB2C9, - 0x3302, 0xB22C, 0x3293, 0xB191, 0x3226, 0xB0F5, 0x31B9, 0xB05B, - 0x314C, 0xAFC1, 0x30DF, 0xAF28, 0x3074, 0xAE8F, 0x3008, 0xADF7, - 0x2F9D, 0xAD60, 0x2F33, 0xACC9, 0x2EC8, 0xAC33, 0x2E5F, 0xAB9E, - 0x2DF6, 0xAB09, 0x2D8D, 0xAA75, 0x2D24, 0xA9E1, 0x2CBC, 0xA94E, - 0x2C55, 0xA8BC, 0x2BEE, 0xA82A, 0x2B87, 0xA799, 0x2B21, 0xA708, - 0x2ABB, 0xA678, 0x2A55, 0xA5E8, 0x29F0, 0xA559, 0x298B, 0xA4CB, - 0x2927, 0xA43D, 0x28C3, 0xA3B0, 0x2860, 0xA323, 0x27FD, 0xA297, - 0x279A, 0xA20B, 0x2738, 0xA180, 0x26D6, 0xA0F6, 0x2674, 0xA06C, - 0x2613, 0x9FE2, 0x25B2, 0x9F59, 0x2552, 0x9ED1, 0x24F2, 0x9E49, - 0x2492, 0x9DC2, 0x2432, 0x9D3B, 0x23D3, 0x9CB4, 0x2375, 0x9C2F, - 0x2317, 0x9BA9, 0x22B9, 0x9B25, 0x225B, 0x9AA0, 0x21FE, 0x9A1C, - 0x21A1, 0x9999, 0x2145, 0x9916, 0x20E8, 0x9894, 0x208D, 0x9812, - 0x2031, 0x9791, 0x1FD6, 0x9710, 0x1F7B, 0x968F, 0x1F21, 0x960F, - 0x1EC7, 0x9590, 0x1E6D, 0x9511, 0x1E13, 0x9492, 0x1DBA, 0x9414, - 0x1D61, 0x9397, 0x1D09, 0x931A, 0x1CB1, 0x929D, 0x1C59, 0x9221, - 0x1C01, 0x91A5, 0x1BAA, 0x9129, 0x1B53, 0x90AF, 0x1AFC, 0x9034, - 0x1AA6, 0x8FBA, 0x1A50, 0x8F40, 0x19FA, 0x8EC7, 0x19A5, 0x8E4F, - 0x1950, 0x8DD6, 0x18FB, 0x8D5E, 0x18A7, 0x8CE7, 0x1853, 0x8C70, - 0x17FF, 0x8BF9, 0x17AB, 0x8B83, 0x1758, 0x8B0D, 0x1705, 0x8A98, - 0x16B2, 0x8A23, 0x1660, 0x89AE, 0x160D, 0x893A, 0x15BC, 0x88C6, - 0x156A, 0x8853, 0x1519, 0x87E0, 0x14C8, 0x876D, 0x1477, 0x86FB, - 0x1426, 0x8689, 0x13D6, 0x8618, 0x1386, 0x85A7, 0x1337, 0x8536, - 0x12E7, 0x84C6, 0x1298, 0x8456, 0x1249, 0x83E7, 0x11FB, 0x8377, - 0x11AC, 0x8309, 0x115E, 0x829A, 0x1111, 0x822C, 0x10C3, 0x81BF, - 0x1076, 0x8151, 0x1029, 0x80E4, 0x0FDC, 0x8078, 0x0F8F, 0x800C, - 0x0F43, 0x7FA0, 0x0EF7, 0x7F34, 0x0EAB, 0x7EC9, 0x0E60, 0x7E5E, - 0x0E15, 0x7DF4, 0x0DCA, 0x7D8A, 0x0D7F, 0x7D20, 0x0D34, 0x7CB6, - 0x0CEA, 0x7C4D, 0x0CA0, 0x7BE5, 0x0C56, 0x7B7C, 0x0C0C, 0x7B14, - 0x0BC3, 0x7AAC, 0x0B7A, 0x7A45, 0x0B31, 0x79DE, 0x0AE8, 0x7977, - 0x0AA0, 0x7911, 0x0A58, 0x78AB, 0x0A10, 0x7845, 0x09C8, 0x77DF, - 0x0981, 0x777A, 0x0939, 0x7715, 0x08F2, 0x76B1, 0x08AB, 0x764D, - 0x0865, 0x75E9, 0x081E, 0x7585, 0x07D8, 0x7522, 0x0792, 0x74BF, - 0x074D, 0x745D, 0x0707, 0x73FA, 0x06C2, 0x7398, 0x067D, 0x7337, - 0x0638, 0x72D5, 0x05F3, 0x7274, 0x05AF, 0x7213, 0x056A, 0x71B3, - 0x0526, 0x7152, 0x04E2, 0x70F2, 0x049F, 0x7093, 0x045B, 0x7033, - 0x0418, 0x6FD4, 0x03D5, 0x6F76, 0x0392, 0x6F17, 0x0350, 0x6EB9, - 0x030D, 0x6E5B, 0x02CB, 0x6DFD, 0x0289, 0x6DA0, 0x0247, 0x6D43, - 0x0206, 0x6CE6, 0x01C4, 0x6C8A, 0x0183, 0x6C2D, 0x0142, 0x6BD1, - 0x0101, 0x6B76, 0x00C0, 0x6B1A, 0x0080, 0x6ABF, 0x0040, 0x6A64 -}; - +// +// common/reciprocal.c: RSP reciprocal ROM contents. +// +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. +// +// This file is subject to the terms and conditions defined in +// 'LICENSE', which is part of this source code package. +// + +#include "common.h" +#include "common/reciprocal.h" + +cen64_align(const uint16_t rsp_reciprocal_rom[1024], CACHE_LINE_SIZE) = { + 0xFFFF, 0xFF00, 0xFE01, 0xFD04, 0xFC07, 0xFB0C, 0xFA11, 0xF918, + 0xF81F, 0xF727, 0xF631, 0xF53B, 0xF446, 0xF352, 0xF25F, 0xF16D, + 0xF07C, 0xEF8B, 0xEE9C, 0xEDAE, 0xECC0, 0xEBD3, 0xEAE8, 0xE9FD, + 0xE913, 0xE829, 0xE741, 0xE65A, 0xE573, 0xE48D, 0xE3A9, 0xE2C5, + 0xE1E1, 0xE0FF, 0xE01E, 0xDF3D, 0xDE5D, 0xDD7E, 0xDCA0, 0xDBC2, + 0xDAE6, 0xDA0A, 0xD92F, 0xD854, 0xD77B, 0xD6A2, 0xD5CA, 0xD4F3, + 0xD41D, 0xD347, 0xD272, 0xD19E, 0xD0CB, 0xCFF8, 0xCF26, 0xCE55, + 0xCD85, 0xCCB5, 0xCBE6, 0xCB18, 0xCA4B, 0xC97E, 0xC8B2, 0xC7E7, + 0xC71C, 0xC652, 0xC589, 0xC4C0, 0xC3F8, 0xC331, 0xC26B, 0xC1A5, + 0xC0E0, 0xC01C, 0xBF58, 0xBE95, 0xBDD2, 0xBD10, 0xBC4F, 0xBB8F, + 0xBACF, 0xBA10, 0xB951, 0xB894, 0xB7D6, 0xB71A, 0xB65E, 0xB5A2, + 0xB4E8, 0xB42E, 0xB374, 0xB2BB, 0xB203, 0xB14B, 0xB094, 0xAFDE, + 0xAF28, 0xAE73, 0xADBE, 0xAD0A, 0xAC57, 0xABA4, 0xAAF1, 0xAA40, + 0xA98E, 0xA8DE, 0xA82E, 0xA77E, 0xA6D0, 0xA621, 0xA574, 0xA4C6, + 0xA41A, 0xA36E, 0xA2C2, 0xA217, 0xA16D, 0xA0C3, 0xA01A, 0x9F71, + 0x9EC8, 0x9E21, 0x9D79, 0x9CD3, 0x9C2D, 0x9B87, 0x9AE2, 0x9A3D, + 0x9999, 0x98F6, 0x9852, 0x97B0, 0x970E, 0x966C, 0x95CB, 0x952B, + 0x948B, 0x93EB, 0x934C, 0x92AD, 0x920F, 0x9172, 0x90D4, 0x9038, + 0x8F9C, 0x8F00, 0x8E65, 0x8DCA, 0x8D30, 0x8C96, 0x8BFC, 0x8B64, + 0x8ACB, 0x8A33, 0x899C, 0x8904, 0x886E, 0x87D8, 0x8742, 0x86AD, + 0x8618, 0x8583, 0x84F0, 0x845C, 0x83C9, 0x8336, 0x82A4, 0x8212, + 0x8181, 0x80F0, 0x8060, 0x7FD0, 0x7F40, 0x7EB1, 0x7E22, 0x7D93, + 0x7D05, 0x7C78, 0x7BEB, 0x7B5E, 0x7AD2, 0x7A46, 0x79BA, 0x792F, + 0x78A4, 0x781A, 0x7790, 0x7706, 0x767D, 0x75F5, 0x756C, 0x74E4, + 0x745D, 0x73D5, 0x734F, 0x72C8, 0x7242, 0x71BC, 0x7137, 0x70B2, + 0x702E, 0x6FA9, 0x6F26, 0x6EA2, 0x6E1F, 0x6D9C, 0x6D1A, 0x6C98, + 0x6C16, 0x6B95, 0x6B14, 0x6A94, 0x6A13, 0x6993, 0x6914, 0x6895, + 0x6816, 0x6798, 0x6719, 0x669C, 0x661E, 0x65A1, 0x6524, 0x64A8, + 0x642C, 0x63B0, 0x6335, 0x62BA, 0x623F, 0x61C5, 0x614B, 0x60D1, + 0x6058, 0x5FDF, 0x5F66, 0x5EED, 0x5E75, 0x5DFD, 0x5D86, 0x5D0F, + 0x5C98, 0x5C22, 0x5BAB, 0x5B35, 0x5AC0, 0x5A4B, 0x59D6, 0x5961, + 0x58ED, 0x5879, 0x5805, 0x5791, 0x571E, 0x56AC, 0x5639, 0x55C7, + 0x5555, 0x54E3, 0x5472, 0x5401, 0x5390, 0x5320, 0x52AF, 0x5240, + 0x51D0, 0x5161, 0x50F2, 0x5083, 0x5015, 0x4FA6, 0x4F38, 0x4ECB, + 0x4E5E, 0x4DF1, 0x4D84, 0x4D17, 0x4CAB, 0x4C3F, 0x4BD3, 0x4B68, + 0x4AFD, 0x4A92, 0x4A27, 0x49BD, 0x4953, 0x48E9, 0x4880, 0x4817, + 0x47AE, 0x4745, 0x46DC, 0x4674, 0x460C, 0x45A5, 0x453D, 0x44D6, + 0x446F, 0x4408, 0x43A2, 0x433C, 0x42D6, 0x4270, 0x420B, 0x41A6, + 0x4141, 0x40DC, 0x4078, 0x4014, 0x3FB0, 0x3F4C, 0x3EE8, 0x3E85, + 0x3E22, 0x3DC0, 0x3D5D, 0x3CFB, 0x3C99, 0x3C37, 0x3BD6, 0x3B74, + 0x3B13, 0x3AB2, 0x3A52, 0x39F1, 0x3991, 0x3931, 0x38D2, 0x3872, + 0x3813, 0x37B4, 0x3755, 0x36F7, 0x3698, 0x363A, 0x35DC, 0x357F, + 0x3521, 0x34C4, 0x3467, 0x340A, 0x33AE, 0x3351, 0x32F5, 0x3299, + 0x323E, 0x31E2, 0x3187, 0x312C, 0x30D1, 0x3076, 0x301C, 0x2FC2, + 0x2F68, 0x2F0E, 0x2EB4, 0x2E5B, 0x2E02, 0x2DA9, 0x2D50, 0x2CF8, + 0x2C9F, 0x2C47, 0x2BEF, 0x2B97, 0x2B40, 0x2AE8, 0x2A91, 0x2A3A, + 0x29E4, 0x298D, 0x2937, 0x28E0, 0x288B, 0x2835, 0x27DF, 0x278A, + 0x2735, 0x26E0, 0x268B, 0x2636, 0x25E2, 0x258D, 0x2539, 0x24E5, + 0x2492, 0x243E, 0x23EB, 0x2398, 0x2345, 0x22F2, 0x22A0, 0x224D, + 0x21FB, 0x21A9, 0x2157, 0x2105, 0x20B4, 0x2063, 0x2012, 0x1FC1, + 0x1F70, 0x1F1F, 0x1ECF, 0x1E7F, 0x1E2E, 0x1DDF, 0x1D8F, 0x1D3F, + 0x1CF0, 0x1CA1, 0x1C52, 0x1C03, 0x1BB4, 0x1B66, 0x1B17, 0x1AC9, + 0x1A7B, 0x1A2D, 0x19E0, 0x1992, 0x1945, 0x18F8, 0x18AB, 0x185E, + 0x1811, 0x17C4, 0x1778, 0x172C, 0x16E0, 0x1694, 0x1648, 0x15FD, + 0x15B1, 0x1566, 0x151B, 0x14D0, 0x1485, 0x143B, 0x13F0, 0x13A6, + 0x135C, 0x1312, 0x12C8, 0x127F, 0x1235, 0x11EC, 0x11A3, 0x1159, + 0x1111, 0x10C8, 0x107F, 0x1037, 0x0FEF, 0x0FA6, 0x0F5E, 0x0F17, + 0x0ECF, 0x0E87, 0x0E40, 0x0DF9, 0x0DB2, 0x0D6B, 0x0D24, 0x0CDD, + 0x0C97, 0x0C50, 0x0C0A, 0x0BC4, 0x0B7E, 0x0B38, 0x0AF2, 0x0AAD, + 0x0A68, 0x0A22, 0x09DD, 0x0998, 0x0953, 0x090F, 0x08CA, 0x0886, + 0x0842, 0x07FD, 0x07B9, 0x0776, 0x0732, 0x06EE, 0x06AB, 0x0668, + 0x0624, 0x05E1, 0x059E, 0x055C, 0x0519, 0x04D6, 0x0494, 0x0452, + 0x0410, 0x03CE, 0x038C, 0x034A, 0x0309, 0x02C7, 0x0286, 0x0245, + 0x0204, 0x01C3, 0x0182, 0x0141, 0x0101, 0x00C0, 0x0080, 0x0040, + 0x6A09, 0xFFFF, 0x6955, 0xFF00, 0x68A1, 0xFE02, 0x67EF, 0xFD06, + 0x673E, 0xFC0B, 0x668D, 0xFB12, 0x65DE, 0xFA1A, 0x6530, 0xF923, + 0x6482, 0xF82E, 0x63D6, 0xF73B, 0x632B, 0xF648, 0x6280, 0xF557, + 0x61D7, 0xF467, 0x612E, 0xF379, 0x6087, 0xF28C, 0x5FE0, 0xF1A0, + 0x5F3A, 0xF0B6, 0x5E95, 0xEFCD, 0x5DF1, 0xEEE5, 0x5D4E, 0xEDFF, + 0x5CAC, 0xED19, 0x5C0B, 0xEC35, 0x5B6B, 0xEB52, 0x5ACB, 0xEA71, + 0x5A2C, 0xE990, 0x598F, 0xE8B1, 0x58F2, 0xE7D3, 0x5855, 0xE6F6, + 0x57BA, 0xE61B, 0x5720, 0xE540, 0x5686, 0xE467, 0x55ED, 0xE38E, + 0x5555, 0xE2B7, 0x54BE, 0xE1E1, 0x5427, 0xE10D, 0x5391, 0xE039, + 0x52FC, 0xDF66, 0x5268, 0xDE94, 0x51D5, 0xDDC4, 0x5142, 0xDCF4, + 0x50B0, 0xDC26, 0x501F, 0xDB59, 0x4F8E, 0xDA8C, 0x4EFE, 0xD9C1, + 0x4E6F, 0xD8F7, 0x4DE1, 0xD82D, 0x4D53, 0xD765, 0x4CC6, 0xD69E, + 0x4C3A, 0xD5D7, 0x4BAF, 0xD512, 0x4B24, 0xD44E, 0x4A9A, 0xD38A, + 0x4A10, 0xD2C8, 0x4987, 0xD206, 0x48FF, 0xD146, 0x4878, 0xD086, + 0x47F1, 0xCFC7, 0x476B, 0xCF0A, 0x46E5, 0xCE4D, 0x4660, 0xCD91, + 0x45DC, 0xCCD6, 0x4558, 0xCC1B, 0x44D5, 0xCB62, 0x4453, 0xCAA9, + 0x43D1, 0xC9F2, 0x434F, 0xC93B, 0x42CF, 0xC885, 0x424F, 0xC7D0, + 0x41CF, 0xC71C, 0x4151, 0xC669, 0x40D2, 0xC5B6, 0x4055, 0xC504, + 0x3FD8, 0xC453, 0x3F5B, 0xC3A3, 0x3EDF, 0xC2F4, 0x3E64, 0xC245, + 0x3DE9, 0xC198, 0x3D6E, 0xC0EB, 0x3CF5, 0xC03F, 0x3C7C, 0xBF93, + 0x3C03, 0xBEE9, 0x3B8B, 0xBE3F, 0x3B13, 0xBD96, 0x3A9C, 0xBCED, + 0x3A26, 0xBC46, 0x39B0, 0xBB9F, 0x393A, 0xBAF8, 0x38C5, 0xBA53, + 0x3851, 0xB9AE, 0x37DD, 0xB90A, 0x3769, 0xB867, 0x36F6, 0xB7C5, + 0x3684, 0xB723, 0x3612, 0xB681, 0x35A0, 0xB5E1, 0x352F, 0xB541, + 0x34BF, 0xB4A2, 0x344F, 0xB404, 0x33DF, 0xB366, 0x3370, 0xB2C9, + 0x3302, 0xB22C, 0x3293, 0xB191, 0x3226, 0xB0F5, 0x31B9, 0xB05B, + 0x314C, 0xAFC1, 0x30DF, 0xAF28, 0x3074, 0xAE8F, 0x3008, 0xADF7, + 0x2F9D, 0xAD60, 0x2F33, 0xACC9, 0x2EC8, 0xAC33, 0x2E5F, 0xAB9E, + 0x2DF6, 0xAB09, 0x2D8D, 0xAA75, 0x2D24, 0xA9E1, 0x2CBC, 0xA94E, + 0x2C55, 0xA8BC, 0x2BEE, 0xA82A, 0x2B87, 0xA799, 0x2B21, 0xA708, + 0x2ABB, 0xA678, 0x2A55, 0xA5E8, 0x29F0, 0xA559, 0x298B, 0xA4CB, + 0x2927, 0xA43D, 0x28C3, 0xA3B0, 0x2860, 0xA323, 0x27FD, 0xA297, + 0x279A, 0xA20B, 0x2738, 0xA180, 0x26D6, 0xA0F6, 0x2674, 0xA06C, + 0x2613, 0x9FE2, 0x25B2, 0x9F59, 0x2552, 0x9ED1, 0x24F2, 0x9E49, + 0x2492, 0x9DC2, 0x2432, 0x9D3B, 0x23D3, 0x9CB4, 0x2375, 0x9C2F, + 0x2317, 0x9BA9, 0x22B9, 0x9B25, 0x225B, 0x9AA0, 0x21FE, 0x9A1C, + 0x21A1, 0x9999, 0x2145, 0x9916, 0x20E8, 0x9894, 0x208D, 0x9812, + 0x2031, 0x9791, 0x1FD6, 0x9710, 0x1F7B, 0x968F, 0x1F21, 0x960F, + 0x1EC7, 0x9590, 0x1E6D, 0x9511, 0x1E13, 0x9492, 0x1DBA, 0x9414, + 0x1D61, 0x9397, 0x1D09, 0x931A, 0x1CB1, 0x929D, 0x1C59, 0x9221, + 0x1C01, 0x91A5, 0x1BAA, 0x9129, 0x1B53, 0x90AF, 0x1AFC, 0x9034, + 0x1AA6, 0x8FBA, 0x1A50, 0x8F40, 0x19FA, 0x8EC7, 0x19A5, 0x8E4F, + 0x1950, 0x8DD6, 0x18FB, 0x8D5E, 0x18A7, 0x8CE7, 0x1853, 0x8C70, + 0x17FF, 0x8BF9, 0x17AB, 0x8B83, 0x1758, 0x8B0D, 0x1705, 0x8A98, + 0x16B2, 0x8A23, 0x1660, 0x89AE, 0x160D, 0x893A, 0x15BC, 0x88C6, + 0x156A, 0x8853, 0x1519, 0x87E0, 0x14C8, 0x876D, 0x1477, 0x86FB, + 0x1426, 0x8689, 0x13D6, 0x8618, 0x1386, 0x85A7, 0x1337, 0x8536, + 0x12E7, 0x84C6, 0x1298, 0x8456, 0x1249, 0x83E7, 0x11FB, 0x8377, + 0x11AC, 0x8309, 0x115E, 0x829A, 0x1111, 0x822C, 0x10C3, 0x81BF, + 0x1076, 0x8151, 0x1029, 0x80E4, 0x0FDC, 0x8078, 0x0F8F, 0x800C, + 0x0F43, 0x7FA0, 0x0EF7, 0x7F34, 0x0EAB, 0x7EC9, 0x0E60, 0x7E5E, + 0x0E15, 0x7DF4, 0x0DCA, 0x7D8A, 0x0D7F, 0x7D20, 0x0D34, 0x7CB6, + 0x0CEA, 0x7C4D, 0x0CA0, 0x7BE5, 0x0C56, 0x7B7C, 0x0C0C, 0x7B14, + 0x0BC3, 0x7AAC, 0x0B7A, 0x7A45, 0x0B31, 0x79DE, 0x0AE8, 0x7977, + 0x0AA0, 0x7911, 0x0A58, 0x78AB, 0x0A10, 0x7845, 0x09C8, 0x77DF, + 0x0981, 0x777A, 0x0939, 0x7715, 0x08F2, 0x76B1, 0x08AB, 0x764D, + 0x0865, 0x75E9, 0x081E, 0x7585, 0x07D8, 0x7522, 0x0792, 0x74BF, + 0x074D, 0x745D, 0x0707, 0x73FA, 0x06C2, 0x7398, 0x067D, 0x7337, + 0x0638, 0x72D5, 0x05F3, 0x7274, 0x05AF, 0x7213, 0x056A, 0x71B3, + 0x0526, 0x7152, 0x04E2, 0x70F2, 0x049F, 0x7093, 0x045B, 0x7033, + 0x0418, 0x6FD4, 0x03D5, 0x6F76, 0x0392, 0x6F17, 0x0350, 0x6EB9, + 0x030D, 0x6E5B, 0x02CB, 0x6DFD, 0x0289, 0x6DA0, 0x0247, 0x6D43, + 0x0206, 0x6CE6, 0x01C4, 0x6C8A, 0x0183, 0x6C2D, 0x0142, 0x6BD1, + 0x0101, 0x6B76, 0x00C0, 0x6B1A, 0x0080, 0x6ABF, 0x0040, 0x6A64 +}; + diff --git a/common/reciprocal.h b/common/reciprocal.h index cabfcf1..1955c14 100644 --- a/common/reciprocal.h +++ b/common/reciprocal.h @@ -1,8 +1,8 @@ // // common/reciprocal.h: RSP reciprocal ROM contents. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/dd/controller.c b/dd/controller.c index 4f3454e..6d14ade 100644 --- a/dd/controller.c +++ b/dd/controller.c @@ -1,8 +1,8 @@ // // dd/controller.c: DD controller. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/dd/controller.h b/dd/controller.h index 9564802..6d86b97 100644 --- a/dd/controller.h +++ b/dd/controller.h @@ -1,8 +1,8 @@ // // dd/controller.h: DD controller. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/dd/registers.md b/dd/registers.md index 57d2d7b..48e3591 100644 --- a/dd/registers.md +++ b/dd/registers.md @@ -1,8 +1,8 @@ // // dd/registers.md: DD register enumerations. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/cen64d.pro b/debugger/cen64d.pro index 2b86e45..4c0b2eb 100644 --- a/debugger/cen64d.pro +++ b/debugger/cen64d.pro @@ -2,7 +2,7 @@ # cen64d.pro: CEN64 qmake file. # # CEN64D: Cycle-Accurate Nintendo 64 Debugger. -# Copyright (C) 2014, Tyler J. Stachecki. +# Copyright (C) 2015, Tyler J. Stachecki. # # This file is subject to the terms and conditions defined in # 'LICENSE', which is part of this source code package. diff --git a/debugger/disassembly_view.cpp b/debugger/disassembly_view.cpp index 1b7c6c4..74166af 100644 --- a/debugger/disassembly_view.cpp +++ b/debugger/disassembly_view.cpp @@ -2,7 +2,7 @@ // disassembly_view.cpp: CEN64D disassembly view (MVC). // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/disassembly_view.h b/debugger/disassembly_view.h index 17fbb84..f81646b 100644 --- a/debugger/disassembly_view.h +++ b/debugger/disassembly_view.h @@ -2,7 +2,7 @@ // disassembly_view.h: CEN64D disassembly view (MVC). // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/main.cpp b/debugger/main.cpp index d58f5be..94dbd78 100644 --- a/debugger/main.cpp +++ b/debugger/main.cpp @@ -2,7 +2,7 @@ // main.cpp: CEN64D entry point. // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/main_window.cpp b/debugger/main_window.cpp index 3ea6383..86bfc71 100644 --- a/debugger/main_window.cpp +++ b/debugger/main_window.cpp @@ -2,7 +2,7 @@ // main_window.cpp: CEN64D main window. // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/main_window.h b/debugger/main_window.h index c7f42bc..77a9e45 100644 --- a/debugger/main_window.h +++ b/debugger/main_window.h @@ -2,7 +2,7 @@ // main_window.h: CEN64D main window. // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/memory_view.cpp b/debugger/memory_view.cpp index aa5786f..c0bbfeb 100644 --- a/debugger/memory_view.cpp +++ b/debugger/memory_view.cpp @@ -2,7 +2,7 @@ // memory_view.cpp: CEN64D memory view (MVC). // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/memory_view.h b/debugger/memory_view.h index e459d9b..21f051b 100644 --- a/debugger/memory_view.h +++ b/debugger/memory_view.h @@ -2,7 +2,7 @@ // memory_view.h: CEN64D memory view (MVC). // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/memory_window.cpp b/debugger/memory_window.cpp index 7078a92..ffa0ac0 100644 --- a/debugger/memory_window.cpp +++ b/debugger/memory_window.cpp @@ -2,7 +2,7 @@ // memory_window.cpp: Memory view window. // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/memory_window.h b/debugger/memory_window.h index d0b3433..821234a 100644 --- a/debugger/memory_window.h +++ b/debugger/memory_window.h @@ -2,7 +2,7 @@ // memory_window.h: Memory view window. // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/network_handle.cpp b/debugger/network_handle.cpp index 41e92df..44b4aca 100644 --- a/debugger/network_handle.cpp +++ b/debugger/network_handle.cpp @@ -2,7 +2,7 @@ // network_handle.cpp: CEN64D network handle. // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/network_handle.h b/debugger/network_handle.h index 3a35cb1..5fa859b 100644 --- a/debugger/network_handle.h +++ b/debugger/network_handle.h @@ -2,7 +2,7 @@ // network_handle.h: CEN64D network handle. // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/rdp_window.cpp b/debugger/rdp_window.cpp index 7e9eb8b..fc65798 100644 --- a/debugger/rdp_window.cpp +++ b/debugger/rdp_window.cpp @@ -2,7 +2,7 @@ // rdp_window.cpp: RDP view window. // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/rdp_window.h b/debugger/rdp_window.h index b842551..88280ab 100644 --- a/debugger/rdp_window.h +++ b/debugger/rdp_window.h @@ -2,7 +2,7 @@ // rdp_window.h: RDP view window. // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/register_model.cpp b/debugger/register_model.cpp index e0973e6..fef24bb 100644 --- a/debugger/register_model.cpp +++ b/debugger/register_model.cpp @@ -2,7 +2,7 @@ // register_model.cpp: CEN64D register model (MVC). // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/register_model.h b/debugger/register_model.h index a4ed6d3..46d0c50 100644 --- a/debugger/register_model.h +++ b/debugger/register_model.h @@ -2,7 +2,7 @@ // register_model.h: CEN64D register model (MVC). // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/register_view.cpp b/debugger/register_view.cpp index b0bd614..ab95b88 100644 --- a/debugger/register_view.cpp +++ b/debugger/register_view.cpp @@ -2,7 +2,7 @@ // register_view.cpp: CEN64D register view (MVC). // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/register_view.h b/debugger/register_view.h index c8f92c6..f78af8e 100644 --- a/debugger/register_view.h +++ b/debugger/register_view.h @@ -2,7 +2,7 @@ // register_view.h: CEN64D register view (MVC). // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/rsp_window.cpp b/debugger/rsp_window.cpp index 022bfc0..b4714db 100644 --- a/debugger/rsp_window.cpp +++ b/debugger/rsp_window.cpp @@ -2,7 +2,7 @@ // rsp_window.cpp: RSP view window. // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/rsp_window.h b/debugger/rsp_window.h index 70dd184..4181e9a 100644 --- a/debugger/rsp_window.h +++ b/debugger/rsp_window.h @@ -2,7 +2,7 @@ // rsp_window.h: RSP view window. // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/toggle_window.cpp b/debugger/toggle_window.cpp index 4b0c0b6..5ae4aee 100644 --- a/debugger/toggle_window.cpp +++ b/debugger/toggle_window.cpp @@ -2,7 +2,7 @@ // toggle_window.cpp: Toggle-able window. // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/toggle_window.h b/debugger/toggle_window.h index db2d363..d75b958 100644 --- a/debugger/toggle_window.h +++ b/debugger/toggle_window.h @@ -2,7 +2,7 @@ // toggle_window.h: Toggle-able window. // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/vr4300_window.cpp b/debugger/vr4300_window.cpp index 0bb8240..9c5d8ad 100644 --- a/debugger/vr4300_window.cpp +++ b/debugger/vr4300_window.cpp @@ -2,7 +2,7 @@ // vr4300_window.cpp: VR4300 view window. // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/debugger/vr4300_window.h b/debugger/vr4300_window.h index 209e4d8..6c357b1 100644 --- a/debugger/vr4300_window.h +++ b/debugger/vr4300_window.h @@ -2,7 +2,7 @@ // vr4300_window.h: VR4300 view window. // // CEN64D: Cycle-Accurate Nintendo 64 Debugger -// Copyright (C) 2014, Tyler J. Stachecki. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/device/device.c b/device/device.c index 1cb4d22..d2aa4a7 100644 --- a/device/device.c +++ b/device/device.c @@ -1,8 +1,8 @@ // // device.c: CEN64 device container. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/device/device.h b/device/device.h index d82423d..5c044f3 100644 --- a/device/device.h +++ b/device/device.h @@ -1,8 +1,8 @@ // // device.h: Common CEN64 device container. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/device/netapi.c b/device/netapi.c index 8fc5a01..0f301ab 100644 --- a/device/netapi.c +++ b/device/netapi.c @@ -1,8 +1,8 @@ // // device/netapi.c: CEN64 device network API. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/device/netapi.h b/device/netapi.h index 12a3983..df40332 100644 --- a/device/netapi.h +++ b/device/netapi.h @@ -1,8 +1,8 @@ // // device/netapi.h: CEN64 device network API. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/device/options.c b/device/options.c index 5027b97..fb417bc 100644 --- a/device/options.c +++ b/device/options.c @@ -1,8 +1,8 @@ // // options.c: CEN64 simulation options. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. @@ -111,7 +111,7 @@ void print_command_line_usage(const char *invokation_string) { " By default, CEN64 uses localhost:64646.\n" " -ddipl : Path to the 64DD IPL ROM (enables 64DD mode).\n" " -ddrom : Path to the 64DD disk ROM (requires -ddipl).\n" - " -nointerface : Run simulator without a user interface.\n" + " -nointerface : Run simulator without a user interface.\n" // Change this to emulator? ,invokation_string ); diff --git a/device/options.h b/device/options.h index 51b5842..6508790 100644 --- a/device/options.h +++ b/device/options.h @@ -1,8 +1,8 @@ // // options.h: Common CEN64 simulation options. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/common/alloc.h b/os/common/alloc.h index f186c8c..4e4543e 100644 --- a/os/common/alloc.h +++ b/os/common/alloc.h @@ -1,8 +1,8 @@ // // os/common/alloc.h: Low-level allocators. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/common/gl_hints.c b/os/common/gl_hints.c index 491bbf6..2de1d0a 100644 --- a/os/common/gl_hints.c +++ b/os/common/gl_hints.c @@ -1,8 +1,8 @@ // // os/common/gl_hints.c: OpenGL configuration hints. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/common/gl_hints.h b/os/common/gl_hints.h index 47f6559..f0a4dad 100644 --- a/os/common/gl_hints.h +++ b/os/common/gl_hints.h @@ -1,8 +1,8 @@ // // os/common/gl_hints.h: OpenGL configuration hints. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/common/input.c b/os/common/input.c index bcb09cc..f73e2ad 100644 --- a/os/common/input.c +++ b/os/common/input.c @@ -1,8 +1,8 @@ // // os/common/input.c: Input device handling functions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/common/input.h b/os/common/input.h index 2c5bbca..7d22b5f 100644 --- a/os/common/input.h +++ b/os/common/input.h @@ -1,8 +1,8 @@ // // os/common/input.h: Input device handling functions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/posix/alloc.c b/os/posix/alloc.c index 841da90..e8c6b3d 100644 --- a/os/posix/alloc.c +++ b/os/posix/alloc.c @@ -1,8 +1,8 @@ // // os/posix/alloc.c: Low-level POSIX-based allocators. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/posix/main.c b/os/posix/main.c index 0bdfa97..9d880be 100644 --- a/os/posix/main.c +++ b/os/posix/main.c @@ -1,8 +1,8 @@ // // os/posix/main.c: Entry point for POSIX backend. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/posix/thread.h b/os/posix/thread.h index df4d309..5b20a51 100644 --- a/os/posix/thread.h +++ b/os/posix/thread.h @@ -1,8 +1,8 @@ // // os/posix/thread.h: Multi-threading functions and types. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/posix/timer.c b/os/posix/timer.c index 79bb6a9..2df7c21 100644 --- a/os/posix/timer.c +++ b/os/posix/timer.c @@ -1,8 +1,8 @@ // // os/posix/timer.c: Functions for obtaining the system clock time. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/posix/timer.h b/os/posix/timer.h index 8205b11..d19deeb 100644 --- a/os/posix/timer.h +++ b/os/posix/timer.h @@ -1,8 +1,8 @@ // // os/posix/timer.h: Functions for obtaining the system clock time. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/winapi/alloc.c b/os/winapi/alloc.c index fe696be..cdf588f 100644 --- a/os/winapi/alloc.c +++ b/os/winapi/alloc.c @@ -1,8 +1,8 @@ // // os/winapi/alloc.h: Low-level WinAPI-based allocators. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/winapi/gl_common.h b/os/winapi/gl_common.h index b53ce4a..d8ff933 100644 --- a/os/winapi/gl_common.h +++ b/os/winapi/gl_common.h @@ -1,8 +1,8 @@ // // os/winapi/gl_common.h: Common WinAPI/OpenGL header. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/winapi/gl_config.c b/os/winapi/gl_config.c index 0f4cd69..4d1180f 100644 --- a/os/winapi/gl_config.c +++ b/os/winapi/gl_config.c @@ -1,8 +1,8 @@ // // os/winapi/gl_config.c: WinAPI/OpenGL framebuffer configuration. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/winapi/gl_config.h b/os/winapi/gl_config.h index 5a1a2f5..0578891 100644 --- a/os/winapi/gl_config.h +++ b/os/winapi/gl_config.h @@ -1,8 +1,8 @@ // // os/winapi/gl_config.h: WinAPI/OpenGL framebuffer configuration. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/winapi/gl_context.h b/os/winapi/gl_context.h index 94240e9..c648607 100644 --- a/os/winapi/gl_context.h +++ b/os/winapi/gl_context.h @@ -1,8 +1,8 @@ // // os/winapi/gl_context.h: WinAPI GL context definitions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/winapi/gl_display.h b/os/winapi/gl_display.h index d4695c2..21cd93b 100644 --- a/os/winapi/gl_display.h +++ b/os/winapi/gl_display.h @@ -1,8 +1,8 @@ // // os/winapi/gl_display.h: WinAPI display definitions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/winapi/gl_screen.h b/os/winapi/gl_screen.h index e4712ba..6febdcf 100644 --- a/os/winapi/gl_screen.h +++ b/os/winapi/gl_screen.h @@ -1,8 +1,8 @@ // // os/winapi/gl_screen.h: WinAPI screen definitions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/winapi/gl_window.c b/os/winapi/gl_window.c index 8b99520..c4bc24d 100644 --- a/os/winapi/gl_window.c +++ b/os/winapi/gl_window.c @@ -1,8 +1,8 @@ // // os/winapi/gl_window.h: WinAPI/OpenGL window definitions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/winapi/gl_window.h b/os/winapi/gl_window.h index 7682c55..83107ef 100644 --- a/os/winapi/gl_window.h +++ b/os/winapi/gl_window.h @@ -1,8 +1,8 @@ // // os/winapi/gl_window.h: WinAPI/OpenGL window definitions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/winapi/keycodes.h b/os/winapi/keycodes.h index 8c644d6..62331c8 100644 --- a/os/winapi/keycodes.h +++ b/os/winapi/keycodes.h @@ -1,8 +1,8 @@ // // os/winapi/keycodes.h: WinAPI keycode definitions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/winapi/main.c b/os/winapi/main.c index fdc1d28..6b79c82 100644 --- a/os/winapi/main.c +++ b/os/winapi/main.c @@ -1,8 +1,8 @@ // // os/posix/main.c: Entry point for WinAPI backend. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/winapi/thread.h b/os/winapi/thread.h index edb84fd..c2c78f8 100644 --- a/os/winapi/thread.h +++ b/os/winapi/thread.h @@ -1,8 +1,8 @@ // // os/winapi/thread.h: Multi-threading functions and types. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/winapi/timer.c b/os/winapi/timer.c index 200368a..b3cbbf3 100644 --- a/os/winapi/timer.c +++ b/os/winapi/timer.c @@ -1,8 +1,8 @@ // // os/winapi/timer.c: Functions for obtaining the system clock time. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/winapi/timer.h b/os/winapi/timer.h index 2d130ed..fbf9fda 100644 --- a/os/winapi/timer.h +++ b/os/winapi/timer.h @@ -1,8 +1,8 @@ // // os/winapi/timer.h: Functions for obtaining the system clock time. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/x11/gl_common.h b/os/x11/gl_common.h index eaacb46..3b37302 100644 --- a/os/x11/gl_common.h +++ b/os/x11/gl_common.h @@ -1,8 +1,8 @@ // // os/x11/gl_common.h: Common X11/OpenGL header. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/x11/gl_config.c b/os/x11/gl_config.c index 6a12d8b..093f387 100644 --- a/os/x11/gl_config.c +++ b/os/x11/gl_config.c @@ -1,8 +1,8 @@ // // os/x11/gl_config.c: X11/OpenGL framebuffer configuration. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/x11/gl_config.h b/os/x11/gl_config.h index 57cc8f8..d26ba55 100644 --- a/os/x11/gl_config.h +++ b/os/x11/gl_config.h @@ -1,8 +1,8 @@ // // os/x11/gl_config.h: X11/OpenGL framebuffer configuration. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/x11/gl_context.h b/os/x11/gl_context.h index 78f8178..5e17823 100644 --- a/os/x11/gl_context.h +++ b/os/x11/gl_context.h @@ -1,8 +1,8 @@ // // os/x11/gl_context.h: X11 GL context definitions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/x11/gl_display.h b/os/x11/gl_display.h index c8e1ca5..ba9085c 100644 --- a/os/x11/gl_display.h +++ b/os/x11/gl_display.h @@ -1,8 +1,8 @@ // // os/x11/gl_display.h: X11 display definitions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/x11/gl_screen.h b/os/x11/gl_screen.h index 262aa14..e7827d5 100644 --- a/os/x11/gl_screen.h +++ b/os/x11/gl_screen.h @@ -1,8 +1,8 @@ // // os/x11/gl_screen.h: X11 screen definitions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/x11/gl_window.c b/os/x11/gl_window.c index 4e9bf82..2f0b75e 100644 --- a/os/x11/gl_window.c +++ b/os/x11/gl_window.c @@ -1,8 +1,8 @@ // // os/x11/gl_window.c: X11/OpenGL window definitions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/x11/gl_window.h b/os/x11/gl_window.h index 619d768..9441ab1 100644 --- a/os/x11/gl_window.h +++ b/os/x11/gl_window.h @@ -1,8 +1,8 @@ // // os/x11/gl_window.h: X11/OpenGL window definitions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/os/x11/keycodes.h b/os/x11/keycodes.h index 9031f32..0e08a62 100644 --- a/os/x11/keycodes.h +++ b/os/x11/keycodes.h @@ -1,8 +1,8 @@ // // os/x11/keycodes.h: X11 keycode definitions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/pi/controller.c b/pi/controller.c index 689c8a3..cab788b 100644 --- a/pi/controller.c +++ b/pi/controller.c @@ -1,8 +1,8 @@ // // pi/controller.c: Parallel interface controller. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/pi/controller.h b/pi/controller.h index ff048e7..238ddd6 100644 --- a/pi/controller.h +++ b/pi/controller.h @@ -1,8 +1,8 @@ // // pi/controller.h: Parallel interface controller. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/pi/registers.md b/pi/registers.md index efbeb5c..d4707da 100644 --- a/pi/registers.md +++ b/pi/registers.md @@ -1,8 +1,8 @@ // // pi/registers.md: PI register enumerations. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rdp/cpu.c b/rdp/cpu.c index 8cda96c..5dc189c 100644 --- a/rdp/cpu.c +++ b/rdp/cpu.c @@ -1,8 +1,8 @@ // // rdp/cpu.c: RDP processor container. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rdp/cpu.h b/rdp/cpu.h index f906e22..ac02d81 100644 --- a/rdp/cpu.h +++ b/rdp/cpu.h @@ -1,8 +1,8 @@ // // rdp/cpu.h: RDP processor container. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rdp/interface.c b/rdp/interface.c index 9a9dec7..7fe6f0e 100644 --- a/rdp/interface.c +++ b/rdp/interface.c @@ -1,8 +1,8 @@ // // rdp/interface.c: RDP interface. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rdp/interface.h b/rdp/interface.h index 01ad257..79363cc 100644 --- a/rdp/interface.h +++ b/rdp/interface.h @@ -1,8 +1,8 @@ // // rdp/interface.h: RDP interface. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rdp/registers.md b/rdp/registers.md index 2ce7077..9d4fb8c 100644 --- a/rdp/registers.md +++ b/rdp/registers.md @@ -1,8 +1,8 @@ // // rdp/registers.md: RDP register enumerations. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/ri/controller.c b/ri/controller.c index cabd53e..8aff7b2 100644 --- a/ri/controller.c +++ b/ri/controller.c @@ -1,8 +1,8 @@ // // ri/controller.c: RAM interface controller. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/ri/controller.h b/ri/controller.h index e71b394..ddf9eda 100644 --- a/ri/controller.h +++ b/ri/controller.h @@ -1,8 +1,8 @@ // // ri/controller.h: RAM interface controller. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/ri/rdram_registers.md b/ri/rdram_registers.md index 4bc4605..15406b1 100644 --- a/ri/rdram_registers.md +++ b/ri/rdram_registers.md @@ -1,8 +1,8 @@ // // ri/rdram_registers.md: RDRAM register enumerations. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/ri/registers.md b/ri/registers.md index bc7d857..126f93c 100644 --- a/ri/registers.md +++ b/ri/registers.md @@ -1,8 +1,8 @@ // // ri/registers.md: RI register enumerations. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/cp0.c b/rsp/cp0.c index e9fd1b8..4ac682d 100644 --- a/rsp/cp0.c +++ b/rsp/cp0.c @@ -1,8 +1,8 @@ // // rsp/cp0.c: RSP control coprocessor. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/cp0.h b/rsp/cp0.h index 583a464..37a5688 100644 --- a/rsp/cp0.h +++ b/rsp/cp0.h @@ -1,8 +1,8 @@ // // rsp/cp0.c: RSP control coprocessor. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/cp2.c b/rsp/cp2.c index a5f48f5..e0ab178 100644 --- a/rsp/cp2.c +++ b/rsp/cp2.c @@ -1,8 +1,8 @@ // // rsp/cp2.c: RSP control coprocessor. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/cp2.h b/rsp/cp2.h index 48332ea..a4b56a9 100644 --- a/rsp/cp2.h +++ b/rsp/cp2.h @@ -1,8 +1,8 @@ // // rsp/cp2.h: RSP control coprocessor. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/cpu.c b/rsp/cpu.c index 736768f..04fd6db 100644 --- a/rsp/cpu.c +++ b/rsp/cpu.c @@ -1,8 +1,8 @@ // // rsp/cpu.c: RSP processor container. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/cpu.h b/rsp/cpu.h index b004be3..40f7849 100644 --- a/rsp/cpu.h +++ b/rsp/cpu.h @@ -1,8 +1,8 @@ // // rsp/cpu.h: RSP processor container. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/decoder.c b/rsp/decoder.c index 716cbac..ec27f7f 100644 --- a/rsp/decoder.c +++ b/rsp/decoder.c @@ -1,8 +1,8 @@ // // rsp/decoder.c: RSP decoder. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/decoder.h b/rsp/decoder.h index 3df4860..7f819c2 100644 --- a/rsp/decoder.h +++ b/rsp/decoder.h @@ -1,8 +1,8 @@ // // rsp/decoder.h: RSP decoder. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/functions.c b/rsp/functions.c index 4f6ee11..d1ab51d 100644 --- a/rsp/functions.c +++ b/rsp/functions.c @@ -1,8 +1,8 @@ // // rsp/functions.c: RSP execution functions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/interface.c b/rsp/interface.c index c7b2f08..6c16593 100644 --- a/rsp/interface.c +++ b/rsp/interface.c @@ -1,8 +1,8 @@ // // rsp/interface.c: RSP interface. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/interface.h b/rsp/interface.h index 74ebf6d..48ea907 100644 --- a/rsp/interface.h +++ b/rsp/interface.h @@ -1,8 +1,8 @@ // // rsp/interface.h: RSP interface. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/opcodes.c b/rsp/opcodes.c index efcee16..69aafb3 100644 --- a/rsp/opcodes.c +++ b/rsp/opcodes.c @@ -1,8 +1,8 @@ // // rsp/opcodes.c: RSP opcode types and info. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/opcodes.h b/rsp/opcodes.h index 720ec64..c759ed4 100644 --- a/rsp/opcodes.h +++ b/rsp/opcodes.h @@ -1,8 +1,8 @@ // // rsp/opcodes.h: RSP opcode types and info. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/opcodes.md b/rsp/opcodes.md index 385a7e9..42d11d7 100644 --- a/rsp/opcodes.md +++ b/rsp/opcodes.md @@ -1,8 +1,8 @@ // // rsp/opcodes.md: RSP opcode types and info. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/opcodes_priv.h b/rsp/opcodes_priv.h index 3fab0a7..4361f1a 100644 --- a/rsp/opcodes_priv.h +++ b/rsp/opcodes_priv.h @@ -1,8 +1,8 @@ // // rsp/opcodes_priv.h: RSP opcode types and info. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/pipeline.c b/rsp/pipeline.c index 7b34ebe..1408084 100644 --- a/rsp/pipeline.c +++ b/rsp/pipeline.c @@ -1,8 +1,8 @@ // // rsp/pipeline.c: RSP processor pipeline. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/pipeline.h b/rsp/pipeline.h index 8d38fc9..4455641 100644 --- a/rsp/pipeline.h +++ b/rsp/pipeline.h @@ -1,8 +1,8 @@ // // rsp/pipeline.h: RSP processor pipeline. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/registers.md b/rsp/registers.md index 9cbd97a..0bd1e14 100644 --- a/rsp/registers.md +++ b/rsp/registers.md @@ -1,8 +1,8 @@ // // rsp/registers.md: RSP register enumerations. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/vector_opcodes.md b/rsp/vector_opcodes.md index 444f457..4e4468b 100644 --- a/rsp/vector_opcodes.md +++ b/rsp/vector_opcodes.md @@ -1,8 +1,8 @@ // // rsp/vector_opcodes.md: RSP vector opcode types and info. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/rsp/vfunctions.c b/rsp/vfunctions.c index e27cd62..f9b68f7 100644 --- a/rsp/vfunctions.c +++ b/rsp/vfunctions.c @@ -1,8 +1,8 @@ // // rsp/vfunctions.c: RSP vector execution functions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/si/cic.c b/si/cic.c index d3e0456..e80cf07 100644 --- a/si/cic.c +++ b/si/cic.c @@ -1,8 +1,8 @@ // // si/cic.c: PIF CIC security/lock out algorithms. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/si/cic.h b/si/cic.h index d97564e..8ab5807 100644 --- a/si/cic.h +++ b/si/cic.h @@ -1,8 +1,8 @@ // // si/cic.h: PIF CIC security/lock out algorithms. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/si/controller.c b/si/controller.c index 23bc9f0..7ab0280 100644 --- a/si/controller.c +++ b/si/controller.c @@ -1,8 +1,8 @@ // // si/controller.c: Serial interface controller. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/si/controller.h b/si/controller.h index 5c4bf44..880c48d 100644 --- a/si/controller.h +++ b/si/controller.h @@ -1,8 +1,8 @@ // // si/controller.h: Serial interface controller. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/si/registers.md b/si/registers.md index 27c2a40..6ba5b82 100644 --- a/si/registers.md +++ b/si/registers.md @@ -1,8 +1,8 @@ // // si/registers.md: SI register enumerations. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vi/controller.c b/vi/controller.c index 4a41253..ccfa6d6 100644 --- a/vi/controller.c +++ b/vi/controller.c @@ -1,8 +1,8 @@ // // vi/controller.c: Video interface controller. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vi/controller.h b/vi/controller.h index 1e04514..23d65a3 100644 --- a/vi/controller.h +++ b/vi/controller.h @@ -1,8 +1,8 @@ // // vi/controller.h: Video interface controller. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vi/registers.md b/vi/registers.md index 74d150f..1b33bee 100644 --- a/vi/registers.md +++ b/vi/registers.md @@ -1,8 +1,8 @@ // // vi/registers.md: VI register enumerations. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vi/render.c b/vi/render.c index 9a00b73..a97f797 100644 --- a/vi/render.c +++ b/vi/render.c @@ -1,8 +1,8 @@ // // vi/render.c: Rendering functions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vi/render.h b/vi/render.h index 9f0ec3f..894818f 100644 --- a/vi/render.h +++ b/vi/render.h @@ -1,8 +1,8 @@ // // vi/render.h: Rendering functions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vi/window.c b/vi/window.c index 0ee6e7c..eb28a48 100644 --- a/vi/window.c +++ b/vi/window.c @@ -1,8 +1,8 @@ // // vi/window.c: Video interface host window/GUI routines. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vi/window.h b/vi/window.h index 94f7fdc..348868e 100644 --- a/vi/window.h +++ b/vi/window.h @@ -1,8 +1,8 @@ // // vi/window.h: Video interface host window/GUI routines. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/cp0.c b/vr4300/cp0.c index 8d6e215..3d0d839 100644 --- a/vr4300/cp0.c +++ b/vr4300/cp0.c @@ -1,8 +1,8 @@ // // vr4300/cp0.c: VR4300 system control coprocessor. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/cp0.h b/vr4300/cp0.h index f3f21b8..9de2914 100644 --- a/vr4300/cp0.h +++ b/vr4300/cp0.h @@ -1,8 +1,8 @@ // // vr4300/cp0.h: VR4300 system control coprocessor. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/cp1.c b/vr4300/cp1.c index 2145074..7d2faa7 100644 --- a/vr4300/cp1.c +++ b/vr4300/cp1.c @@ -1,8 +1,8 @@ // // vr4300/cp1.c: VR4300 floating point unit coprocessor. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/cp1.h b/vr4300/cp1.h index 9ed88ad..015541b 100644 --- a/vr4300/cp1.h +++ b/vr4300/cp1.h @@ -1,8 +1,8 @@ // // vr4300/cp1.h: VR4300 floating point unit coprocessor. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/cpu.c b/vr4300/cpu.c index 6464703..a9c6a59 100644 --- a/vr4300/cpu.c +++ b/vr4300/cpu.c @@ -1,8 +1,8 @@ // // vr4300/cpu.c: VR4300 processor container. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/cpu.h b/vr4300/cpu.h index 472d047..d4a18c3 100644 --- a/vr4300/cpu.h +++ b/vr4300/cpu.h @@ -1,8 +1,8 @@ // // vr4300/cpu.h: VR4300 processor container. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/dcache.c b/vr4300/dcache.c index 391507d..9693f7f 100644 --- a/vr4300/dcache.c +++ b/vr4300/dcache.c @@ -1,8 +1,8 @@ // // vr4300/dcache.c: VR4300 instruction cache. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/dcache.h b/vr4300/dcache.h index 6f2ba59..340e60e 100644 --- a/vr4300/dcache.h +++ b/vr4300/dcache.h @@ -1,8 +1,8 @@ // // vr4300/dcache.h: VR4300 instruction cache. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/decoder.c b/vr4300/decoder.c index 0fce9b6..0ff1c36 100644 --- a/vr4300/decoder.c +++ b/vr4300/decoder.c @@ -1,8 +1,8 @@ // // vr4300/decoder.c: VR4300 decoder. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/decoder.h b/vr4300/decoder.h index b373296..974b948 100644 --- a/vr4300/decoder.h +++ b/vr4300/decoder.h @@ -1,8 +1,8 @@ // // vr4300/decoder.h: VR4300 decoder. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/fault.c b/vr4300/fault.c index 5bf935b..ecc2ecc 100644 --- a/vr4300/fault.c +++ b/vr4300/fault.c @@ -1,8 +1,8 @@ // // vr4300/fault.c: VR4300 fault management. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/fault.h b/vr4300/fault.h index a5b0497..8680af7 100644 --- a/vr4300/fault.h +++ b/vr4300/fault.h @@ -1,8 +1,8 @@ // // vr4300/fault.h: VR4300 fault management. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/fault.md b/vr4300/fault.md index 2e66741..3aab5f9 100644 --- a/vr4300/fault.md +++ b/vr4300/fault.md @@ -1,8 +1,8 @@ // // vr4300/fault.md: VR4300 fault management. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/functions.c b/vr4300/functions.c index 474f32d..35a8942 100644 --- a/vr4300/functions.c +++ b/vr4300/functions.c @@ -1,8 +1,8 @@ // // vr4300/functions.c: VR4300 execution functions. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/icache.c b/vr4300/icache.c index bb5ba96..5355293 100644 --- a/vr4300/icache.c +++ b/vr4300/icache.c @@ -1,8 +1,8 @@ // // vr4300/icache.c: VR4300 instruction cache. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/icache.h b/vr4300/icache.h index 0f9c7ee..5a26224 100644 --- a/vr4300/icache.h +++ b/vr4300/icache.h @@ -1,8 +1,8 @@ // // vr4300/icache.h: VR4300 instruction cache. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/interface.c b/vr4300/interface.c index 509f435..77a57e5 100644 --- a/vr4300/interface.c +++ b/vr4300/interface.c @@ -1,8 +1,8 @@ // // vr4300/interface.c: VR4300 interface. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/interface.h b/vr4300/interface.h index 4ca4745..fb25d75 100644 --- a/vr4300/interface.h +++ b/vr4300/interface.h @@ -1,8 +1,8 @@ // // vr4300/interface.h: MI interface. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/opcodes.c b/vr4300/opcodes.c index 3a99159..2d69db5 100644 --- a/vr4300/opcodes.c +++ b/vr4300/opcodes.c @@ -1,8 +1,8 @@ // // vr4300/opcodes.c: VR4300 opcode types and info. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/opcodes.h b/vr4300/opcodes.h index f08eeb6..97cd530 100644 --- a/vr4300/opcodes.h +++ b/vr4300/opcodes.h @@ -1,8 +1,8 @@ // // vr4300/opcodes.h: VR4300 opcode types and info. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/opcodes.md b/vr4300/opcodes.md index 8d1624c..03c5444 100644 --- a/vr4300/opcodes.md +++ b/vr4300/opcodes.md @@ -1,8 +1,8 @@ // // vr4300/opcodes.md: VR4300 opcode types and info. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/opcodes_priv.h b/vr4300/opcodes_priv.h index dadc30e..a9697f4 100644 --- a/vr4300/opcodes_priv.h +++ b/vr4300/opcodes_priv.h @@ -1,8 +1,8 @@ // // vr4300/opcodes_priv.h: VR4300 opcode types and info. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/pipeline.c b/vr4300/pipeline.c index 19901f1..90464a7 100644 --- a/vr4300/pipeline.c +++ b/vr4300/pipeline.c @@ -1,8 +1,8 @@ // // vr4300/pipeline.c: VR4300 processor pipeline. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/pipeline.h b/vr4300/pipeline.h index aed2d6a..3bda893 100644 --- a/vr4300/pipeline.h +++ b/vr4300/pipeline.h @@ -1,8 +1,8 @@ // // vr4300/pipeline.h: VR4300 processor pipeline. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/registers.md b/vr4300/registers.md index 06d69c2..dd0c709 100644 --- a/vr4300/registers.md +++ b/vr4300/registers.md @@ -1,8 +1,8 @@ // // vr4300/registers.md: MI register enumerations. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/segment.c b/vr4300/segment.c index 04d21f4..25175bb 100644 --- a/vr4300/segment.c +++ b/vr4300/segment.c @@ -1,8 +1,8 @@ // // vr4300/segment.c: VR4300 MMU segment manager. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. diff --git a/vr4300/segment.h b/vr4300/segment.h index f13b01a..ce368a6 100644 --- a/vr4300/segment.h +++ b/vr4300/segment.h @@ -1,8 +1,8 @@ // // vr4300/segment.h: VR4300 MMU segment manager. // -// CEN64: Cycle-Accurate Nintendo 64 Simulator. -// Copyright (C) 2014, Tyler J. Stachecki. +// CEN64: Cycle-Accurate Nintendo 64 Emulator. +// Copyright (C) 2015, Tyler J. Stachecki. // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package.