Skip to content

Commit ba2fc6f

Browse files
committed
Merge branch 'master' into pci_virge-fifo
2 parents 8689582 + 6517b66 commit ba2fc6f

File tree

862 files changed

+34010
-15574
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

862 files changed

+34010
-15574
lines changed

3rdparty/bx/src/debug.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,13 @@ namespace bx
4343
// NativeClient: NaCl module load failed: Validation failure. File violates Native Client safety rules.
4444
__asm__ ("int $3");
4545
#elif BX_PLATFORM_EMSCRIPTEN
46-
emscripten_log(EM_LOG_CONSOLE | EM_LOG_ERROR | EM_LOG_C_STACK | EM_LOG_JS_STACK | EM_LOG_DEMANGLE, "debugBreak!");
46+
emscripten_log(0
47+
| EM_LOG_CONSOLE
48+
| EM_LOG_ERROR
49+
| EM_LOG_C_STACK
50+
| EM_LOG_JS_STACK
51+
, "debugBreak!"
52+
);
4753
// Doing emscripten_debugger() disables asm.js validation due to an emscripten bug
4854
//emscripten_debugger();
4955
EM_ASM({ debugger; });

docs/source/commandline/commandline-all.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3989,7 +3989,7 @@ Core Misc Options
39893989
39903990
Specifies the type of UI to use, either ``simple`` or ``cabinet``.
39913991
3992-
The default is Cabinet (**-ui cabinet**).
3992+
The default is cabinet (**-ui cabinet**).
39933993
39943994
Example:
39953995
.. code-block:: bash
@@ -4025,9 +4025,9 @@ Core Misc Options
40254025
40264026
**\-[no]ui_mouse**
40274027
4028-
Displays a mouse cursor when using the built-in UI for MAME.
4028+
Displays a mouse cursor when using the built-in MAME user interface.
40294029
4030-
The default is (**-noui_mouse**).
4030+
The default is ON (**-ui_mouse**).
40314031
40324032
.. _mame-commandline-language:
40334033

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@
6363
# built documents.
6464
#
6565
# The short X.Y version.
66-
version = '0.263'
66+
version = '0.264'
6767
# The full version, including alpha/beta/rc tags.
68-
release = '0.263'
68+
release = '0.264'
6969

7070
# The language for content autogenerated by Sphinx. Refer to documentation
7171
# for a list of supported languages.

docs/source/debugger/general.rst

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -190,15 +190,22 @@ available:
190190

191191
%c
192192
Prints the corresponding argument as an 8-bit character.
193-
%[0][<n>]d
193+
%[-][0][<n>]d
194194
Prints the corresponding argument as a decimal number with optional
195-
minimum field width and zero fill.
196-
%[0][<n>]o
195+
left justification, zero fill and minimum field width.
196+
%[-][0][<n>]o
197197
Prints the corresponding argument as an octal number with optional
198-
minimum field width and zero fill using lowercase letters.
199-
%[0][<n>]x
200-
Prints the corresponding argument as a hexadecimal number with
201-
optional minimum field width and zero fill using uppercase letters.
198+
left justification, zero fill and minimum field width.
199+
%[-][0][<n>]x
200+
Prints the corresponding argument as a lowercase hexadecimal number
201+
with optional left justification, zero fill and minimum field width.
202+
%[-][0][<n>]X
203+
Prints the corresponding argument as an uppercase hexadecimal number
204+
with optional left justification, zero fill and minimum field width.
205+
%[-][<n>][.[<n>]]s
206+
Prints a null-terminated string of 8-bit characters from the address
207+
and address space given by the corresponding argument, with optional
208+
left justification, minimum and maximum field widths.
202209
\%%
203210
Prints a literal percent symbol.
204211
\\n

docs/source/initialsetup/compilingmame.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -560,8 +560,9 @@ TOOLS
560560
Set to **1** to build additional tools along with the emulator, including
561561
**unidasm**, **chdman**, **romcmp**, and **srcclean**.
562562
EMULATOR
563-
Set to **0** along with **TOOLS=1** to build *only* the tools and not the
564-
main MAME emulator itself.
563+
When set to **0**, the main emulator target will not be created. This is
564+
intended to be used in conjunction with setting **TOOLS** to **1** to build
565+
the additional tools without building the emulator.
565566
NO_OPENGL
566567
Set to **1** to disable building the OpenGL video output module.
567568
NO_USE_PORTAUDIO

docs/swlist/n64jp.csv

Lines changed: 0 additions & 236 deletions
This file was deleted.

docs/swlist/readme.txt

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)