Skip to content

Commit

Permalink
fix: exception mask default
Browse files Browse the repository at this point in the history
Exception mask should default to 0b111100 (60) to break only on error
types.

Updated uae-dap to v1.1.5, which includes this change, and updated
defaults in this project's `package.json`.

Fixes #304
  • Loading branch information
grahambates committed Jun 20, 2024
1 parent 241da89 commit 1463f7e
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 13 deletions.
30 changes: 23 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@
"exceptionMask": {
"type": "number",
"description": "Mask used to catch the exceptions",
"default": 8188
"default": 60
},
"emulatorType": {
"type": "string",
Expand Down Expand Up @@ -402,7 +402,7 @@
"exceptionMask": {
"type": "number",
"description": "Mask used to catch the exceptions",
"default": 8188
"default": 60
}
}
}
Expand Down Expand Up @@ -594,7 +594,7 @@
"exceptionMask": {
"type": "number",
"description": "Mask used to catch the exceptions",
"default": 8188
"default": 60
},
"emulatorStartDelay": {
"type": "number",
Expand Down Expand Up @@ -723,7 +723,7 @@
"exceptionMask": {
"type": "number",
"description": "Mask used to catch the exceptions",
"default": 8188
"default": 60
},
"emulatorStartDelay": {
"type": "number",
Expand Down Expand Up @@ -1004,9 +1004,9 @@
"axios": "^1.6.7",
"extract-zip": "^2.0.1",
"glob": "^10.3.10",
"uae-dap": "^1.1.4",
"uae-dap": "^1.1.5",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"winston-transport": "^4.6.0"
}
}
}

0 comments on commit 1463f7e

Please sign in to comment.