summaryrefslogtreecommitdiffstatshomepage
path: root/docs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* (nw) Stiletto2018-02-071-27/+27
| | | (nw)
* Minor updates (nw) Stiletto2018-02-071-4/+11
| | | Minor updates (nw)
* More docs work: escapes, debugger update (nw) (#3168) Firehawke2018-02-056-32/+28
| | | | | | | | | | * Missed a couple escape sequences. (nw) * A little more escaping, acronym fixes, fix oddity in symlist (nw) * Update debugger internal help to match docs (nw) * Lowercasing for CPU in command parameters, fix casing on ASCII. (nw)
* Missed a couple escape sequences. (nw) Firehawke2018-02-031-3/+3
|
* Terminology cleanup second pass (nw) Firehawke2018-02-011-24/+48
|
* Final pass of verbiage cleanup. (nw) Firehawke2018-02-014-177/+182
|
* A few corrections for wave 2, more to come. (nw) Firehawke2018-02-012-7/+6
|
* Terminology update wave 1 (nw) Firehawke2018-02-011-82/+97
|
* Overhaul commandline section of docs, includes index with linkable anchors. ↵ Firehawke2018-01-255-416/+1005
| | | | | | | | | | | | | | | | (#3112) * The first set of commandline overhauls. (NW) * Correct case on headings, further improvements to index, spelling fix * More updates to the index and cleanup to the commandline stuff. [NW] * More core options in the index. [NW] * Finished multiplatform commandline index [NW] * Completion of first revision commandline index [NW]
* update docs version Stiletto2018-01-161-2/+2
| | | | update docs version *nw* just taking care of an annoyance. As far as we know, docs are in sync. If not, it's easily fixed.
* Add additional memory operators per request (NW) (#3067) Firehawke2018-01-151-6/+10
| | | | | | * Add additional memory operators per request and further cleanups to expressions (NW) * Requested adjustments to expressions. (NW)
* Correct command heading case and adjustments to expressions (NW) Firehawke2018-01-1510-73/+80
|
* First pass of MAME Debugger help for documentation. (NW) Firehawke2018-01-1312-0/+1781
|
* Updated documentation for castool and added floptool (nw) Nigel Barnes2018-01-113-333/+376
|
* Updates "2017" strings to "2018" where relevant. Jonathan Holt2018-01-063-3/+3
|
* Basic anchor links for FAQ page (#2975) Firehawke2017-12-271-1/+62
|
* rewind implementation fixes and improvements vadosnaprimer2017-12-222-1/+12
| | | | | | | | | | | | | - reset scheduler savestate to what it was for years before rewind -- changing saved variables should be done after thorough testing. right now, adding some vars breaks some machines, adding other vars breaks others - switch to megabyte-wise capacity -- savestate size greatly differs between machines, relying on state count is unstable - switch to internal indexing -- no longer depends on inaccurate machine time - rewind accelerator key in debugger (Ctrl+F11) - report capacity hit (once), with some useful info - make error reports saner - mention rewind and rewind_capacity in the docs
* (nw) Stiletto2017-12-211-1/+1
|
* (nw) more minor typo fixes for docs.mamedev.org Stiletto2017-12-141-4/+4
|
* Revert "Revert "Merge branch 'master' of https://github.com/mamedev/mame"" Firehawke2017-12-133-8/+22
| | | | This reverts commit 54155441e9ba9941e85d80c4834a66376a11e791.
* Revert "Merge branch 'master' of https://github.com/mamedev/mame" Firehawke2017-12-133-22/+8
| | | | | This reverts commit f537428e5a40ba6dde8ca9bf0fe9ae6b1f189ac4, reversing changes made to 0d70d798107d4e4e8fb9f230410aeb1e888d65c5.
* (nw) more self-service Stiletto2017-12-131-1/+1
|
* Update whatis.rst Stiletto2017-12-131-1/+1
| | | (nw) self-service
* No more UINT (nw) AJR2017-12-101-5/+5
|
* Documentation update (nw) AJR2017-12-101-1/+15
|
* dvdisasm: Overhaul [O. Galibert] Olivier Galibert2017-11-263-2/+208
| | | | | | | | Disassemblers are now independant classes. Not only the code is cleaner, but unidasm has access to all the cpu cores again. The interface to the disassembly method has changed from byte buffers to objects that give a result to read methods. This also adds support for lfsr and/or paged PCs.
* doc: update MAME short description (nw) hap2017-11-053-4/+4
|
* leaving MESS as-is (nw) hap2017-11-051-2/+2
|
* put original abbreviation meaning as trivia here (nw) hap2017-11-051-1/+1
|
* make emulator description generic (nw) hap2017-11-054-7/+7
|
* fix some typos (#2772) Martin Lindhe2017-11-031-2/+2
|
* move some content for release archive out of build repo into main repo Vas Crabb2017-08-141-2/+0
|
* This is too contentious, please put it up for review Vas Crabb2017-08-011-63/+5
| | | | | | Revert "Changes to debugger memory address translation" This reverts commit bb0964f9a284b15851773f5428bd602ca01cc28b.
* Changes to debugger memory address translation AJR2017-08-011-5/+63
| | | | | | - memory_translate now returns an address space number rather a boolean flag, permitting addresses in part of one space to map to an entirely different space. This is primarily intended to help MCUs which have blocks of internal memory that can be dynamically remapped, but may also allow for more accurate emulation of MMUs that drive multiple external address spaces, since the old limit of four address spaces per MAME device has been lifted. - memory_translate has also been made a const method, in spite of a couple of badly behaved CPU cores that can't honestly treat it as one. - The (read|write)_(byte|word|dword|qword|memory|opcode) accessors have been transferred from debugger_cpu to device_memory_interface, with somewhat modified arguments corresponding to the translate function it calls through to if requested.
* Include -output option in documentation Michael.S.G2017-07-051-0/+13
| | | Include -output and it's available options in documentation.
* Updated Fedora instructions Brian King2017-07-041-1/+1
| | | DNF is now preferred package manager. alsa-lib-devel is also required (not mentioned in the current docs)
* dimemory: Lift the cap on the number of address spaces per device [O. Galibert] Olivier Galibert2017-07-031-33/+49
|
* Rename AS_DECRYPTED_OPCODES to AS_OPCODES [O. Galibert] Olivier Galibert2017-07-031-12/+12
|
* (nw) Stiletto2017-06-251-1/+3
| | | (nw)
* Update luaengine.rst Dan Amador2017-05-221-2/+2
|
* (nw) Stiletto2017-05-101-1/+1
| | | (nw)
* (nw) Stiletto2017-05-101-1/+1
| | | (nw)
* update edit docs link (nw) Stiletto2017-05-101-2/+2
| | | update edit docs link (nw)
* Fix typos Prayag Verma2017-03-241-2/+2
| | | | slighly → slightly transistion → transition
* Updates "2016" strings to "2017 where relevant. Stiletto2017-01-243-3/+3
| | | Updates "2016" strings to "2017 where relevant.
* srcclean again (nw) Vas Crabb2016-11-3017-56/+56
|
* dirom: Document the interface evalution [O. Galibert] Olivier Galibert2016-11-281-3/+9
|
* Corrected HLSL documentation ImJezze2016-11-141-15/+15
| | | | | - removed -antialias option (does not exist anymore) - added missing -vector_beam_smooth option - fixed suggested default values for -bloom_lvl_weights options (were messed up in the last update)
* NW - More documentation updates.. Firehawke2016-10-292-4/+22
| | | | | | * Fix a few 'mess' references. * Add important note for -listslots * FAQ: Wouldn't MAME be faster if X?
* Adding id() property to input_device Tomer Verona2016-09-201-18/+20
| | | | | | | | | | | | This change adds id() property to input_device, which represents the unique device id. This allows the osd layer when creating a device to pass a friendly display name along with a unique identifier. Currently the device id is only used to map a physical controller device to controller id, but can be used more generally in the future. For raw input devices, we use the full raw input name as the device id. For all other devices, we fall back to device name as the device id. The "uniqueness" of the device id is not currently enforced in code.