Skip to content

Commit

Permalink
Merge branch 'master' into debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
cuavas committed Mar 19, 2024
2 parents 1bdfa86 + 0524b10 commit 60005c8
Show file tree
Hide file tree
Showing 306 changed files with 14,332 additions and 6,349 deletions.
8 changes: 7 additions & 1 deletion 3rdparty/bx/src/debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,13 @@ namespace bx
// NativeClient: NaCl module load failed: Validation failure. File violates Native Client safety rules.
__asm__ ("int $3");
#elif BX_PLATFORM_EMSCRIPTEN
emscripten_log(EM_LOG_CONSOLE | EM_LOG_ERROR | EM_LOG_C_STACK | EM_LOG_JS_STACK | EM_LOG_DEMANGLE, "debugBreak!");
emscripten_log(0
| EM_LOG_CONSOLE
| EM_LOG_ERROR
| EM_LOG_C_STACK
| EM_LOG_JS_STACK
, "debugBreak!"
);
// Doing emscripten_debugger() disables asm.js validation due to an emscripten bug
//emscripten_debugger();
EM_ASM({ debugger; });
Expand Down
6 changes: 3 additions & 3 deletions docs/source/commandline/commandline-all.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3989,7 +3989,7 @@ Core Misc Options
Specifies the type of UI to use, either ``simple`` or ``cabinet``.
The default is Cabinet (**-ui cabinet**).
The default is cabinet (**-ui cabinet**).
Example:
.. code-block:: bash
Expand Down Expand Up @@ -4025,9 +4025,9 @@ Core Misc Options
**\-[no]ui_mouse**
Displays a mouse cursor when using the built-in UI for MAME.
Displays a mouse cursor when using the built-in MAME user interface.
The default is (**-noui_mouse**).
The default is ON (**-ui_mouse**).
.. _mame-commandline-language:
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
# built documents.
#
# The short X.Y version.
version = '0.263'
version = '0.264'
# The full version, including alpha/beta/rc tags.
release = '0.263'
release = '0.264'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 3 additions & 0 deletions docs/source/debugger/general.rst
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,9 @@ available:
Prints the corresponding argument as an octal number with optional
minimum field width and zero fill using lowercase letters.
%[0][<n>]x
Prints the corresponding argument as a hexadecimal number with
optional minimum field width and zero fill using lowercase letters.
%[0][<n>]X
Prints the corresponding argument as a hexadecimal number with
optional minimum field width and zero fill using uppercase letters.
\%%
Expand Down
236 changes: 0 additions & 236 deletions docs/swlist/n64jp.csv

This file was deleted.

10 changes: 0 additions & 10 deletions docs/swlist/readme.txt

This file was deleted.

0 comments on commit 60005c8

Please sign in to comment.