summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/rsp
Commit message (Collapse)AuthorAgeFilesLines
* N64 / RSP - Make element selection in vector load/store DRC C functions ↵ Happy2017-03-151-4/+4
| | | | | | | | consistent with other implementations. Also fix a minor issue with RDP disassembly listing for Load Block.
* RSP - let debugger disassembly windows track RSP PC Happy2017-03-131-1/+1
|
* Self-registering devices prep: Vas Crabb2017-02-271-1/+1
| | | | | | | | | | | | | | * Make device_creator a variable template and get rid of the ampersands * Remove screen.h and speaker.h from emu.h and add where necessary * Centralise instantiations of screen and speaker finder templates * Add/standardise #include guards in many hearers * Remove many redundant #includes * Order #includesr to help catch headers that can't be #included alone (nw) This changes #include order to be prefix, unit header if applicable then other stuff roughly in order from most dependent to least dependent library. This helps catch headers that don't #include things that they use.
* Remove emu.h from headers (nw) Olivier Galibert2017-02-111-1/+0
| | | | | | | | | | | | Per Vas' request. If the compile fails for you (i'm thinking osx and windows native debuggers here in particular), add '#include "emu.h"' as first include of the cpp files that fail. Due to our use of precompilation and forced inclusion, emu.h must be included as the very first non-comment thing we do if we want to be sure msvc compiles are identical to gcc/clang ones. Doing it directly instead of through an include increases the correctness probability by a magnitude.
* srcclean (nw) Vas Crabb2016-11-271-1/+1
|
* Eliminated 'rsp_dasm_one(std::string &string,...' trampoline Nathan Woods2016-11-204-16/+11
|
* Changing the RSP DRC to not use static char buffers when disassembling Nathan Woods2016-11-205-11/+20
|
* Changed disassembler infrastructure to not use char buffers internally Nathan Woods2016-11-203-13/+4
|
* Introduce u8/u16/u32/u64/s8/s16/s32/s64 Vas Crabb2016-11-191-1/+1
| | | | | | | | | | | | * New abbreviated types are in osd and util namespaces, and also in global namespace for things that #include "emu.h" * Get rid of import of cstdint types to global namespace (C99 does this anyway) * Remove the cstdint types from everything in emu * Get rid of U64/S64 macros * Fix a bug in dps16 caused by incorrect use of macro * Fix debugcon not checking for "do " prefix case-insensitively * Fix a lot of messed up tabulation * More constexpr * Fix up many __names
* Changed the RSP disassembler to use 'std::ostream &' internally Nathan Woods2016-11-172-160/+157
|
* Moved the declaration of rsp_dasm_one() to a header file Nathan Woods2016-11-175-8/+2
|
* converted lot of TRUE/FALSE to real boolean and updated types (nw) Miodrag Milanovic2016-10-226-170/+170
|
* NOTICE (TYPE NAME CONSOLIDATION) Miodrag Milanovic2016-10-2225-858/+858
| | | | | Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8 also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
* Make sure all cpu's export STATE_GENPCBASE and use safe_pcbase() for ↵ smf-2016-09-281-1/+1
| | | | everything in the debugger, which allows interruptible cpu's to work properly. [smf]
* Revert "Make sure all cpu's export STATE_GENPCBASE and use safe_pcbase() for ↵ Lord-Nightmare2016-09-271-1/+1
| | | | | | everything in the debugger, which allows interruptible cpu's to work properly. [smf]" This reverts commit 1a186c8a3a16a7ce99d7df2dd217a7552b696c92.
* Make sure all cpu's export STATE_GENPCBASE and use safe_pcbase() for ↵ smf-2016-09-271-1/+1
| | | | everything in the debugger, which allows interruptible cpu's to work properly. [smf]
* made constexprs lower case and used constexpr for returning input value as ↵ Miodrag Milanovic2016-07-311-1/+1
| | | | well for rest of defines in osdcomm.h (nw)
* std::min and std:max instead of MIN and MAX, also some more macros converted ↵ Miodrag Milanovic2016-07-312-4/+4
| | | | to inline functions (nw)
* Revert software-installed slot/image options when changing software AJR2016-04-042-3/+3
| | | | | - Remove emu.h's stealth include of emuopts.h through mconfig.h; reduce dependency on emuopts.h in other headers and source files. - MCFG_CPU_FORCE_NO_DRC is now a CPU configuration parameter rather than a global one; it still works to override the -drc option setting.
* Replace strformat, strprintf and strcatprintf with type-safe steam_format ↵ Vas Crabb2016-02-283-65/+65
| | | | | | | | | and string_format Update MAME to use new function Instantiate ODR-used static constant members Make some of the UI code more localisable Remove use of retired functions in tools
* reverting: Miodrag Milanovic2016-01-202-2/+2
| | | | | | | SHA-1: 1f90ceab075c4869298e963bf0a14a0aac2f1caa * tags are now strings (nw) fix start project for custom builds in Visual Studio (nw)
* tags are now strings (nw) Miodrag Milanovic2016-01-162-2/+2
| | | | fix start project for custom builds in Visual Studio (nw)
* Revert "remove const (nw)" Miodrag Milanovic2016-01-132-2/+2
| | | | This reverts commit e96fd34dd817f1113daf9e6b099a8f40cfd1ed6d.
* remove const (nw) Miodrag Milanovic2016-01-112-2/+2
|
* Return std::string objects by value rather than pass by reference AJR2016-01-106-6/+6
| | | | | | - strprintf is unaltered, but strformat now takes one fewer argument - state_string_export still fills a buffer, but has been made const - get_default_card_software now takes no arguments but returns a string
* cleanup (nw) Miodrag Milanovic2015-12-263-6/+5
|
* cleanup (nw) Miodrag Milanovic2015-12-261-2/+2
|
* cleanups (nw) Miodrag Milanovic2015-12-251-3/+0
|
* some handmade changes (nw) Miodrag Milanovic2015-12-215-31/+17
|
* macro removal INLINE -> static inline (nw) Miodrag Milanovic2015-12-122-3/+3
|
* override part 2 (nw) Miodrag Milanovic2015-12-053-91/+91
|
* clang-modernize part 6 Miodrag Milanovic2015-12-041-5/+5
|
* clang-modernize part 3 Miodrag Milanovic2015-12-043-35/+35
|
* Rename *.c -> *.cpp in our source (nw) Miodrag Milanovic2015-11-086-0/+0
|
* Naming update, nw therealmogminer@gmail.com2015-10-022-2/+2
|
* Cleanups and version bumpmame0166 Miodrag Milanovic2015-09-301-4/+4
|
* Added overlooked factor of 2 to VI timing to account for vertical resolution ↵ Happy2015-09-281-1/+10
| | | | | | | | being set in half-lines. Changed rsp disassembly to use MIPS ABI names for registers. Implemented 'start valid' bit in RDP status register. Increased scheduler quantum time to allow for better r4300 <-> RSP signaling.
* Move all devices into separate part of src tree (nw) Miodrag Milanovic2015-09-1337-0/+13508