pmdsky-debug-py 5.1.14__py3-none-any.whl → 5.1.16__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pmdsky_debug_py/_release.py +1 -1
- pmdsky_debug_py/eu.py +80 -0
- pmdsky_debug_py/eu_itcm.py +80 -0
- pmdsky_debug_py/jp.py +80 -0
- pmdsky_debug_py/jp_itcm.py +80 -0
- pmdsky_debug_py/na.py +80 -0
- pmdsky_debug_py/na_itcm.py +80 -0
- pmdsky_debug_py/protocol.py +35 -0
- {pmdsky_debug_py-5.1.14.dist-info → pmdsky_debug_py-5.1.16.dist-info}/METADATA +1 -1
- pmdsky_debug_py-5.1.16.dist-info/RECORD +14 -0
- pmdsky_debug_py-5.1.14.dist-info/RECORD +0 -14
- {pmdsky_debug_py-5.1.14.dist-info → pmdsky_debug_py-5.1.16.dist-info}/WHEEL +0 -0
- {pmdsky_debug_py-5.1.14.dist-info → pmdsky_debug_py-5.1.16.dist-info}/top_level.txt +0 -0
pmdsky_debug_py/_release.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
RELEASE = "v0.5.1+
|
|
1
|
+
RELEASE = "v0.5.1+6cb71f51dc"
|
pmdsky_debug_py/eu.py
CHANGED
|
@@ -6287,6 +6287,86 @@ class EuArm9Functions:
|
|
|
6287
6287
|
"Note: unverified, ported from Irdkwia's notes\n\nNo params.",
|
|
6288
6288
|
)
|
|
6289
6289
|
|
|
6290
|
+
ClearIrqFlag = Symbol(
|
|
6291
|
+
[0x7BB68],
|
|
6292
|
+
[0x207BB68],
|
|
6293
|
+
None,
|
|
6294
|
+
(
|
|
6295
|
+
"Enables processor interrupts by clearing the i flag in the program status"
|
|
6296
|
+
" register (cpsr).\n\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts"
|
|
6297
|
+
" were disabled, 0x0 if they were already enabled)"
|
|
6298
|
+
),
|
|
6299
|
+
)
|
|
6300
|
+
|
|
6301
|
+
EnableIrqFlag = Symbol(
|
|
6302
|
+
[0x7BB7C],
|
|
6303
|
+
[0x207BB7C],
|
|
6304
|
+
None,
|
|
6305
|
+
(
|
|
6306
|
+
"Disables processor interrupts by setting the i flag in the program status"
|
|
6307
|
+
" register (cpsr).\n\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts"
|
|
6308
|
+
" were already disabled, 0x0 if they were enabled)"
|
|
6309
|
+
),
|
|
6310
|
+
)
|
|
6311
|
+
|
|
6312
|
+
SetIrqFlag = Symbol(
|
|
6313
|
+
[0x7BB90],
|
|
6314
|
+
[0x207BB90],
|
|
6315
|
+
None,
|
|
6316
|
+
(
|
|
6317
|
+
"Sets the value of the processor's interrupt flag according to the"
|
|
6318
|
+
" specified parameter.\n\nr0: Value to set the flag to (0x80 to set it,"
|
|
6319
|
+
" which disables interrupts; 0x0 to unset it, which enables"
|
|
6320
|
+
" interrupts)\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts were"
|
|
6321
|
+
" disabled, 0x0 if they were enabled)"
|
|
6322
|
+
),
|
|
6323
|
+
)
|
|
6324
|
+
|
|
6325
|
+
EnableIrqFiqFlags = Symbol(
|
|
6326
|
+
[0x7BBA8],
|
|
6327
|
+
[0x207BBA8],
|
|
6328
|
+
None,
|
|
6329
|
+
(
|
|
6330
|
+
"Disables processor all interrupts (both standard and fast) by setting the"
|
|
6331
|
+
" i and f flags in the program status register (cpsr).\n\nReturn: Old value"
|
|
6332
|
+
" of cpsr & 0xC0 (contains the previous values of the i and f flags)"
|
|
6333
|
+
),
|
|
6334
|
+
)
|
|
6335
|
+
|
|
6336
|
+
SetIrqFiqFlags = Symbol(
|
|
6337
|
+
[0x7BBBC],
|
|
6338
|
+
[0x207BBBC],
|
|
6339
|
+
None,
|
|
6340
|
+
(
|
|
6341
|
+
"Sets the value of the processor's interrupt flags (i and f) according to"
|
|
6342
|
+
" the specified parameter.\n\nr0: Value to set the flags to (0xC0 to set"
|
|
6343
|
+
" both flags, 0x80 to set the i flag and clear the f flag, 0x40 to set the"
|
|
6344
|
+
" f flag and clear the i flag and 0x0 to clear both flags)\nReturn: Old"
|
|
6345
|
+
" value of cpsr & 0xC0 (contains the previous values of the i and f flags)"
|
|
6346
|
+
),
|
|
6347
|
+
)
|
|
6348
|
+
|
|
6349
|
+
GetIrqFlag = Symbol(
|
|
6350
|
+
[0x7BBD4],
|
|
6351
|
+
[0x207BBD4],
|
|
6352
|
+
None,
|
|
6353
|
+
(
|
|
6354
|
+
"Gets the current value of the processor's interrupt request (i)"
|
|
6355
|
+
" flag\n\nReturn: cpsr & 0x80 (0x80 if interrupts are disabled, 0x0 if they"
|
|
6356
|
+
" are enabled)"
|
|
6357
|
+
),
|
|
6358
|
+
)
|
|
6359
|
+
|
|
6360
|
+
WaitForever2 = Symbol(
|
|
6361
|
+
[0x7BFB8],
|
|
6362
|
+
[0x207BFB8],
|
|
6363
|
+
None,
|
|
6364
|
+
(
|
|
6365
|
+
"Calls EnableIrqFlag and WaitForInterrupt in an infinite loop.\n\nThis is"
|
|
6366
|
+
" called on fatal errors to hang the program indefinitely.\n\nNo params."
|
|
6367
|
+
),
|
|
6368
|
+
)
|
|
6369
|
+
|
|
6290
6370
|
WaitForInterrupt = Symbol(
|
|
6291
6371
|
[0x7BFC8],
|
|
6292
6372
|
[0x207BFC8],
|
pmdsky_debug_py/eu_itcm.py
CHANGED
|
@@ -6089,6 +6089,86 @@ class EuItcmArm9Functions:
|
|
|
6089
6089
|
None, None, None, "Note: unverified, ported from Irdkwia's notes\n\nNo params."
|
|
6090
6090
|
)
|
|
6091
6091
|
|
|
6092
|
+
ClearIrqFlag = Symbol(
|
|
6093
|
+
None,
|
|
6094
|
+
None,
|
|
6095
|
+
None,
|
|
6096
|
+
(
|
|
6097
|
+
"Enables processor interrupts by clearing the i flag in the program status"
|
|
6098
|
+
" register (cpsr).\n\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts"
|
|
6099
|
+
" were disabled, 0x0 if they were already enabled)"
|
|
6100
|
+
),
|
|
6101
|
+
)
|
|
6102
|
+
|
|
6103
|
+
EnableIrqFlag = Symbol(
|
|
6104
|
+
None,
|
|
6105
|
+
None,
|
|
6106
|
+
None,
|
|
6107
|
+
(
|
|
6108
|
+
"Disables processor interrupts by setting the i flag in the program status"
|
|
6109
|
+
" register (cpsr).\n\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts"
|
|
6110
|
+
" were already disabled, 0x0 if they were enabled)"
|
|
6111
|
+
),
|
|
6112
|
+
)
|
|
6113
|
+
|
|
6114
|
+
SetIrqFlag = Symbol(
|
|
6115
|
+
None,
|
|
6116
|
+
None,
|
|
6117
|
+
None,
|
|
6118
|
+
(
|
|
6119
|
+
"Sets the value of the processor's interrupt flag according to the"
|
|
6120
|
+
" specified parameter.\n\nr0: Value to set the flag to (0x80 to set it,"
|
|
6121
|
+
" which disables interrupts; 0x0 to unset it, which enables"
|
|
6122
|
+
" interrupts)\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts were"
|
|
6123
|
+
" disabled, 0x0 if they were enabled)"
|
|
6124
|
+
),
|
|
6125
|
+
)
|
|
6126
|
+
|
|
6127
|
+
EnableIrqFiqFlags = Symbol(
|
|
6128
|
+
None,
|
|
6129
|
+
None,
|
|
6130
|
+
None,
|
|
6131
|
+
(
|
|
6132
|
+
"Disables processor all interrupts (both standard and fast) by setting the"
|
|
6133
|
+
" i and f flags in the program status register (cpsr).\n\nReturn: Old value"
|
|
6134
|
+
" of cpsr & 0xC0 (contains the previous values of the i and f flags)"
|
|
6135
|
+
),
|
|
6136
|
+
)
|
|
6137
|
+
|
|
6138
|
+
SetIrqFiqFlags = Symbol(
|
|
6139
|
+
None,
|
|
6140
|
+
None,
|
|
6141
|
+
None,
|
|
6142
|
+
(
|
|
6143
|
+
"Sets the value of the processor's interrupt flags (i and f) according to"
|
|
6144
|
+
" the specified parameter.\n\nr0: Value to set the flags to (0xC0 to set"
|
|
6145
|
+
" both flags, 0x80 to set the i flag and clear the f flag, 0x40 to set the"
|
|
6146
|
+
" f flag and clear the i flag and 0x0 to clear both flags)\nReturn: Old"
|
|
6147
|
+
" value of cpsr & 0xC0 (contains the previous values of the i and f flags)"
|
|
6148
|
+
),
|
|
6149
|
+
)
|
|
6150
|
+
|
|
6151
|
+
GetIrqFlag = Symbol(
|
|
6152
|
+
None,
|
|
6153
|
+
None,
|
|
6154
|
+
None,
|
|
6155
|
+
(
|
|
6156
|
+
"Gets the current value of the processor's interrupt request (i)"
|
|
6157
|
+
" flag\n\nReturn: cpsr & 0x80 (0x80 if interrupts are disabled, 0x0 if they"
|
|
6158
|
+
" are enabled)"
|
|
6159
|
+
),
|
|
6160
|
+
)
|
|
6161
|
+
|
|
6162
|
+
WaitForever2 = Symbol(
|
|
6163
|
+
None,
|
|
6164
|
+
None,
|
|
6165
|
+
None,
|
|
6166
|
+
(
|
|
6167
|
+
"Calls EnableIrqFlag and WaitForInterrupt in an infinite loop.\n\nThis is"
|
|
6168
|
+
" called on fatal errors to hang the program indefinitely.\n\nNo params."
|
|
6169
|
+
),
|
|
6170
|
+
)
|
|
6171
|
+
|
|
6092
6172
|
WaitForInterrupt = Symbol(
|
|
6093
6173
|
None,
|
|
6094
6174
|
None,
|
pmdsky_debug_py/jp.py
CHANGED
|
@@ -6285,6 +6285,86 @@ class JpArm9Functions:
|
|
|
6285
6285
|
"Note: unverified, ported from Irdkwia's notes\n\nNo params.",
|
|
6286
6286
|
)
|
|
6287
6287
|
|
|
6288
|
+
ClearIrqFlag = Symbol(
|
|
6289
|
+
None,
|
|
6290
|
+
None,
|
|
6291
|
+
None,
|
|
6292
|
+
(
|
|
6293
|
+
"Enables processor interrupts by clearing the i flag in the program status"
|
|
6294
|
+
" register (cpsr).\n\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts"
|
|
6295
|
+
" were disabled, 0x0 if they were already enabled)"
|
|
6296
|
+
),
|
|
6297
|
+
)
|
|
6298
|
+
|
|
6299
|
+
EnableIrqFlag = Symbol(
|
|
6300
|
+
None,
|
|
6301
|
+
None,
|
|
6302
|
+
None,
|
|
6303
|
+
(
|
|
6304
|
+
"Disables processor interrupts by setting the i flag in the program status"
|
|
6305
|
+
" register (cpsr).\n\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts"
|
|
6306
|
+
" were already disabled, 0x0 if they were enabled)"
|
|
6307
|
+
),
|
|
6308
|
+
)
|
|
6309
|
+
|
|
6310
|
+
SetIrqFlag = Symbol(
|
|
6311
|
+
None,
|
|
6312
|
+
None,
|
|
6313
|
+
None,
|
|
6314
|
+
(
|
|
6315
|
+
"Sets the value of the processor's interrupt flag according to the"
|
|
6316
|
+
" specified parameter.\n\nr0: Value to set the flag to (0x80 to set it,"
|
|
6317
|
+
" which disables interrupts; 0x0 to unset it, which enables"
|
|
6318
|
+
" interrupts)\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts were"
|
|
6319
|
+
" disabled, 0x0 if they were enabled)"
|
|
6320
|
+
),
|
|
6321
|
+
)
|
|
6322
|
+
|
|
6323
|
+
EnableIrqFiqFlags = Symbol(
|
|
6324
|
+
None,
|
|
6325
|
+
None,
|
|
6326
|
+
None,
|
|
6327
|
+
(
|
|
6328
|
+
"Disables processor all interrupts (both standard and fast) by setting the"
|
|
6329
|
+
" i and f flags in the program status register (cpsr).\n\nReturn: Old value"
|
|
6330
|
+
" of cpsr & 0xC0 (contains the previous values of the i and f flags)"
|
|
6331
|
+
),
|
|
6332
|
+
)
|
|
6333
|
+
|
|
6334
|
+
SetIrqFiqFlags = Symbol(
|
|
6335
|
+
None,
|
|
6336
|
+
None,
|
|
6337
|
+
None,
|
|
6338
|
+
(
|
|
6339
|
+
"Sets the value of the processor's interrupt flags (i and f) according to"
|
|
6340
|
+
" the specified parameter.\n\nr0: Value to set the flags to (0xC0 to set"
|
|
6341
|
+
" both flags, 0x80 to set the i flag and clear the f flag, 0x40 to set the"
|
|
6342
|
+
" f flag and clear the i flag and 0x0 to clear both flags)\nReturn: Old"
|
|
6343
|
+
" value of cpsr & 0xC0 (contains the previous values of the i and f flags)"
|
|
6344
|
+
),
|
|
6345
|
+
)
|
|
6346
|
+
|
|
6347
|
+
GetIrqFlag = Symbol(
|
|
6348
|
+
None,
|
|
6349
|
+
None,
|
|
6350
|
+
None,
|
|
6351
|
+
(
|
|
6352
|
+
"Gets the current value of the processor's interrupt request (i)"
|
|
6353
|
+
" flag\n\nReturn: cpsr & 0x80 (0x80 if interrupts are disabled, 0x0 if they"
|
|
6354
|
+
" are enabled)"
|
|
6355
|
+
),
|
|
6356
|
+
)
|
|
6357
|
+
|
|
6358
|
+
WaitForever2 = Symbol(
|
|
6359
|
+
None,
|
|
6360
|
+
None,
|
|
6361
|
+
None,
|
|
6362
|
+
(
|
|
6363
|
+
"Calls EnableIrqFlag and WaitForInterrupt in an infinite loop.\n\nThis is"
|
|
6364
|
+
" called on fatal errors to hang the program indefinitely.\n\nNo params."
|
|
6365
|
+
),
|
|
6366
|
+
)
|
|
6367
|
+
|
|
6288
6368
|
WaitForInterrupt = Symbol(
|
|
6289
6369
|
[0x7BF18],
|
|
6290
6370
|
[0x207BF18],
|
pmdsky_debug_py/jp_itcm.py
CHANGED
|
@@ -6089,6 +6089,86 @@ class JpItcmArm9Functions:
|
|
|
6089
6089
|
None, None, None, "Note: unverified, ported from Irdkwia's notes\n\nNo params."
|
|
6090
6090
|
)
|
|
6091
6091
|
|
|
6092
|
+
ClearIrqFlag = Symbol(
|
|
6093
|
+
None,
|
|
6094
|
+
None,
|
|
6095
|
+
None,
|
|
6096
|
+
(
|
|
6097
|
+
"Enables processor interrupts by clearing the i flag in the program status"
|
|
6098
|
+
" register (cpsr).\n\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts"
|
|
6099
|
+
" were disabled, 0x0 if they were already enabled)"
|
|
6100
|
+
),
|
|
6101
|
+
)
|
|
6102
|
+
|
|
6103
|
+
EnableIrqFlag = Symbol(
|
|
6104
|
+
None,
|
|
6105
|
+
None,
|
|
6106
|
+
None,
|
|
6107
|
+
(
|
|
6108
|
+
"Disables processor interrupts by setting the i flag in the program status"
|
|
6109
|
+
" register (cpsr).\n\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts"
|
|
6110
|
+
" were already disabled, 0x0 if they were enabled)"
|
|
6111
|
+
),
|
|
6112
|
+
)
|
|
6113
|
+
|
|
6114
|
+
SetIrqFlag = Symbol(
|
|
6115
|
+
None,
|
|
6116
|
+
None,
|
|
6117
|
+
None,
|
|
6118
|
+
(
|
|
6119
|
+
"Sets the value of the processor's interrupt flag according to the"
|
|
6120
|
+
" specified parameter.\n\nr0: Value to set the flag to (0x80 to set it,"
|
|
6121
|
+
" which disables interrupts; 0x0 to unset it, which enables"
|
|
6122
|
+
" interrupts)\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts were"
|
|
6123
|
+
" disabled, 0x0 if they were enabled)"
|
|
6124
|
+
),
|
|
6125
|
+
)
|
|
6126
|
+
|
|
6127
|
+
EnableIrqFiqFlags = Symbol(
|
|
6128
|
+
None,
|
|
6129
|
+
None,
|
|
6130
|
+
None,
|
|
6131
|
+
(
|
|
6132
|
+
"Disables processor all interrupts (both standard and fast) by setting the"
|
|
6133
|
+
" i and f flags in the program status register (cpsr).\n\nReturn: Old value"
|
|
6134
|
+
" of cpsr & 0xC0 (contains the previous values of the i and f flags)"
|
|
6135
|
+
),
|
|
6136
|
+
)
|
|
6137
|
+
|
|
6138
|
+
SetIrqFiqFlags = Symbol(
|
|
6139
|
+
None,
|
|
6140
|
+
None,
|
|
6141
|
+
None,
|
|
6142
|
+
(
|
|
6143
|
+
"Sets the value of the processor's interrupt flags (i and f) according to"
|
|
6144
|
+
" the specified parameter.\n\nr0: Value to set the flags to (0xC0 to set"
|
|
6145
|
+
" both flags, 0x80 to set the i flag and clear the f flag, 0x40 to set the"
|
|
6146
|
+
" f flag and clear the i flag and 0x0 to clear both flags)\nReturn: Old"
|
|
6147
|
+
" value of cpsr & 0xC0 (contains the previous values of the i and f flags)"
|
|
6148
|
+
),
|
|
6149
|
+
)
|
|
6150
|
+
|
|
6151
|
+
GetIrqFlag = Symbol(
|
|
6152
|
+
None,
|
|
6153
|
+
None,
|
|
6154
|
+
None,
|
|
6155
|
+
(
|
|
6156
|
+
"Gets the current value of the processor's interrupt request (i)"
|
|
6157
|
+
" flag\n\nReturn: cpsr & 0x80 (0x80 if interrupts are disabled, 0x0 if they"
|
|
6158
|
+
" are enabled)"
|
|
6159
|
+
),
|
|
6160
|
+
)
|
|
6161
|
+
|
|
6162
|
+
WaitForever2 = Symbol(
|
|
6163
|
+
None,
|
|
6164
|
+
None,
|
|
6165
|
+
None,
|
|
6166
|
+
(
|
|
6167
|
+
"Calls EnableIrqFlag and WaitForInterrupt in an infinite loop.\n\nThis is"
|
|
6168
|
+
" called on fatal errors to hang the program indefinitely.\n\nNo params."
|
|
6169
|
+
),
|
|
6170
|
+
)
|
|
6171
|
+
|
|
6092
6172
|
WaitForInterrupt = Symbol(
|
|
6093
6173
|
None,
|
|
6094
6174
|
None,
|
pmdsky_debug_py/na.py
CHANGED
|
@@ -6287,6 +6287,86 @@ class NaArm9Functions:
|
|
|
6287
6287
|
"Note: unverified, ported from Irdkwia's notes\n\nNo params.",
|
|
6288
6288
|
)
|
|
6289
6289
|
|
|
6290
|
+
ClearIrqFlag = Symbol(
|
|
6291
|
+
[0x7B7D0],
|
|
6292
|
+
[0x207B7D0],
|
|
6293
|
+
None,
|
|
6294
|
+
(
|
|
6295
|
+
"Enables processor interrupts by clearing the i flag in the program status"
|
|
6296
|
+
" register (cpsr).\n\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts"
|
|
6297
|
+
" were disabled, 0x0 if they were already enabled)"
|
|
6298
|
+
),
|
|
6299
|
+
)
|
|
6300
|
+
|
|
6301
|
+
EnableIrqFlag = Symbol(
|
|
6302
|
+
[0x7B7E4],
|
|
6303
|
+
[0x207B7E4],
|
|
6304
|
+
None,
|
|
6305
|
+
(
|
|
6306
|
+
"Disables processor interrupts by setting the i flag in the program status"
|
|
6307
|
+
" register (cpsr).\n\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts"
|
|
6308
|
+
" were already disabled, 0x0 if they were enabled)"
|
|
6309
|
+
),
|
|
6310
|
+
)
|
|
6311
|
+
|
|
6312
|
+
SetIrqFlag = Symbol(
|
|
6313
|
+
[0x7B7F8],
|
|
6314
|
+
[0x207B7F8],
|
|
6315
|
+
None,
|
|
6316
|
+
(
|
|
6317
|
+
"Sets the value of the processor's interrupt flag according to the"
|
|
6318
|
+
" specified parameter.\n\nr0: Value to set the flag to (0x80 to set it,"
|
|
6319
|
+
" which disables interrupts; 0x0 to unset it, which enables"
|
|
6320
|
+
" interrupts)\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts were"
|
|
6321
|
+
" disabled, 0x0 if they were enabled)"
|
|
6322
|
+
),
|
|
6323
|
+
)
|
|
6324
|
+
|
|
6325
|
+
EnableIrqFiqFlags = Symbol(
|
|
6326
|
+
[0x7B810],
|
|
6327
|
+
[0x207B810],
|
|
6328
|
+
None,
|
|
6329
|
+
(
|
|
6330
|
+
"Disables processor all interrupts (both standard and fast) by setting the"
|
|
6331
|
+
" i and f flags in the program status register (cpsr).\n\nReturn: Old value"
|
|
6332
|
+
" of cpsr & 0xC0 (contains the previous values of the i and f flags)"
|
|
6333
|
+
),
|
|
6334
|
+
)
|
|
6335
|
+
|
|
6336
|
+
SetIrqFiqFlags = Symbol(
|
|
6337
|
+
[0x7B824],
|
|
6338
|
+
[0x207B824],
|
|
6339
|
+
None,
|
|
6340
|
+
(
|
|
6341
|
+
"Sets the value of the processor's interrupt flags (i and f) according to"
|
|
6342
|
+
" the specified parameter.\n\nr0: Value to set the flags to (0xC0 to set"
|
|
6343
|
+
" both flags, 0x80 to set the i flag and clear the f flag, 0x40 to set the"
|
|
6344
|
+
" f flag and clear the i flag and 0x0 to clear both flags)\nReturn: Old"
|
|
6345
|
+
" value of cpsr & 0xC0 (contains the previous values of the i and f flags)"
|
|
6346
|
+
),
|
|
6347
|
+
)
|
|
6348
|
+
|
|
6349
|
+
GetIrqFlag = Symbol(
|
|
6350
|
+
[0x7B83C],
|
|
6351
|
+
[0x207B83C],
|
|
6352
|
+
None,
|
|
6353
|
+
(
|
|
6354
|
+
"Gets the current value of the processor's interrupt request (i)"
|
|
6355
|
+
" flag\n\nReturn: cpsr & 0x80 (0x80 if interrupts are disabled, 0x0 if they"
|
|
6356
|
+
" are enabled)"
|
|
6357
|
+
),
|
|
6358
|
+
)
|
|
6359
|
+
|
|
6360
|
+
WaitForever2 = Symbol(
|
|
6361
|
+
[0x7BC20],
|
|
6362
|
+
[0x207BC20],
|
|
6363
|
+
None,
|
|
6364
|
+
(
|
|
6365
|
+
"Calls EnableIrqFlag and WaitForInterrupt in an infinite loop.\n\nThis is"
|
|
6366
|
+
" called on fatal errors to hang the program indefinitely.\n\nNo params."
|
|
6367
|
+
),
|
|
6368
|
+
)
|
|
6369
|
+
|
|
6290
6370
|
WaitForInterrupt = Symbol(
|
|
6291
6371
|
[0x7BC30],
|
|
6292
6372
|
[0x207BC30],
|
pmdsky_debug_py/na_itcm.py
CHANGED
|
@@ -6089,6 +6089,86 @@ class NaItcmArm9Functions:
|
|
|
6089
6089
|
None, None, None, "Note: unverified, ported from Irdkwia's notes\n\nNo params."
|
|
6090
6090
|
)
|
|
6091
6091
|
|
|
6092
|
+
ClearIrqFlag = Symbol(
|
|
6093
|
+
None,
|
|
6094
|
+
None,
|
|
6095
|
+
None,
|
|
6096
|
+
(
|
|
6097
|
+
"Enables processor interrupts by clearing the i flag in the program status"
|
|
6098
|
+
" register (cpsr).\n\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts"
|
|
6099
|
+
" were disabled, 0x0 if they were already enabled)"
|
|
6100
|
+
),
|
|
6101
|
+
)
|
|
6102
|
+
|
|
6103
|
+
EnableIrqFlag = Symbol(
|
|
6104
|
+
None,
|
|
6105
|
+
None,
|
|
6106
|
+
None,
|
|
6107
|
+
(
|
|
6108
|
+
"Disables processor interrupts by setting the i flag in the program status"
|
|
6109
|
+
" register (cpsr).\n\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts"
|
|
6110
|
+
" were already disabled, 0x0 if they were enabled)"
|
|
6111
|
+
),
|
|
6112
|
+
)
|
|
6113
|
+
|
|
6114
|
+
SetIrqFlag = Symbol(
|
|
6115
|
+
None,
|
|
6116
|
+
None,
|
|
6117
|
+
None,
|
|
6118
|
+
(
|
|
6119
|
+
"Sets the value of the processor's interrupt flag according to the"
|
|
6120
|
+
" specified parameter.\n\nr0: Value to set the flag to (0x80 to set it,"
|
|
6121
|
+
" which disables interrupts; 0x0 to unset it, which enables"
|
|
6122
|
+
" interrupts)\nReturn: Old value of cpsr & 0x80 (0x80 if interrupts were"
|
|
6123
|
+
" disabled, 0x0 if they were enabled)"
|
|
6124
|
+
),
|
|
6125
|
+
)
|
|
6126
|
+
|
|
6127
|
+
EnableIrqFiqFlags = Symbol(
|
|
6128
|
+
None,
|
|
6129
|
+
None,
|
|
6130
|
+
None,
|
|
6131
|
+
(
|
|
6132
|
+
"Disables processor all interrupts (both standard and fast) by setting the"
|
|
6133
|
+
" i and f flags in the program status register (cpsr).\n\nReturn: Old value"
|
|
6134
|
+
" of cpsr & 0xC0 (contains the previous values of the i and f flags)"
|
|
6135
|
+
),
|
|
6136
|
+
)
|
|
6137
|
+
|
|
6138
|
+
SetIrqFiqFlags = Symbol(
|
|
6139
|
+
None,
|
|
6140
|
+
None,
|
|
6141
|
+
None,
|
|
6142
|
+
(
|
|
6143
|
+
"Sets the value of the processor's interrupt flags (i and f) according to"
|
|
6144
|
+
" the specified parameter.\n\nr0: Value to set the flags to (0xC0 to set"
|
|
6145
|
+
" both flags, 0x80 to set the i flag and clear the f flag, 0x40 to set the"
|
|
6146
|
+
" f flag and clear the i flag and 0x0 to clear both flags)\nReturn: Old"
|
|
6147
|
+
" value of cpsr & 0xC0 (contains the previous values of the i and f flags)"
|
|
6148
|
+
),
|
|
6149
|
+
)
|
|
6150
|
+
|
|
6151
|
+
GetIrqFlag = Symbol(
|
|
6152
|
+
None,
|
|
6153
|
+
None,
|
|
6154
|
+
None,
|
|
6155
|
+
(
|
|
6156
|
+
"Gets the current value of the processor's interrupt request (i)"
|
|
6157
|
+
" flag\n\nReturn: cpsr & 0x80 (0x80 if interrupts are disabled, 0x0 if they"
|
|
6158
|
+
" are enabled)"
|
|
6159
|
+
),
|
|
6160
|
+
)
|
|
6161
|
+
|
|
6162
|
+
WaitForever2 = Symbol(
|
|
6163
|
+
None,
|
|
6164
|
+
None,
|
|
6165
|
+
None,
|
|
6166
|
+
(
|
|
6167
|
+
"Calls EnableIrqFlag and WaitForInterrupt in an infinite loop.\n\nThis is"
|
|
6168
|
+
" called on fatal errors to hang the program indefinitely.\n\nNo params."
|
|
6169
|
+
),
|
|
6170
|
+
)
|
|
6171
|
+
|
|
6092
6172
|
WaitForInterrupt = Symbol(
|
|
6093
6173
|
None,
|
|
6094
6174
|
None,
|
pmdsky_debug_py/protocol.py
CHANGED
|
@@ -3391,6 +3391,41 @@ class Arm9FunctionsProtocol(Protocol):
|
|
|
3391
3391
|
None,
|
|
3392
3392
|
]
|
|
3393
3393
|
|
|
3394
|
+
ClearIrqFlag: Symbol[
|
|
3395
|
+
Optional[List[int]],
|
|
3396
|
+
None,
|
|
3397
|
+
]
|
|
3398
|
+
|
|
3399
|
+
EnableIrqFlag: Symbol[
|
|
3400
|
+
Optional[List[int]],
|
|
3401
|
+
None,
|
|
3402
|
+
]
|
|
3403
|
+
|
|
3404
|
+
SetIrqFlag: Symbol[
|
|
3405
|
+
Optional[List[int]],
|
|
3406
|
+
None,
|
|
3407
|
+
]
|
|
3408
|
+
|
|
3409
|
+
EnableIrqFiqFlags: Symbol[
|
|
3410
|
+
Optional[List[int]],
|
|
3411
|
+
None,
|
|
3412
|
+
]
|
|
3413
|
+
|
|
3414
|
+
SetIrqFiqFlags: Symbol[
|
|
3415
|
+
Optional[List[int]],
|
|
3416
|
+
None,
|
|
3417
|
+
]
|
|
3418
|
+
|
|
3419
|
+
GetIrqFlag: Symbol[
|
|
3420
|
+
Optional[List[int]],
|
|
3421
|
+
None,
|
|
3422
|
+
]
|
|
3423
|
+
|
|
3424
|
+
WaitForever2: Symbol[
|
|
3425
|
+
Optional[List[int]],
|
|
3426
|
+
None,
|
|
3427
|
+
]
|
|
3428
|
+
|
|
3394
3429
|
WaitForInterrupt: Symbol[
|
|
3395
3430
|
Optional[List[int]],
|
|
3396
3431
|
None,
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
|
|
2
|
+
pmdsky_debug_py/_release.py,sha256=mKSqjw91DmXYsp3iROJ0aSv2xh8klMhmrNPMzyafdIs,30
|
|
3
|
+
pmdsky_debug_py/eu.py,sha256=hK-ZGyZTAixyvhteW-lnakJOkMHsU7zP2f6uN9Y7-5M,748675
|
|
4
|
+
pmdsky_debug_py/eu_itcm.py,sha256=uctl1cz0kMpKr-fKA_xkjVbcW-Dz0r3aI9HD_DnliMM,716129
|
|
5
|
+
pmdsky_debug_py/jp.py,sha256=dg_Nw2ReyGu5oQsoqXwg8Vh2J7tgDWPGLsnftJ6pel8,737218
|
|
6
|
+
pmdsky_debug_py/jp_itcm.py,sha256=dKGps6J_U0ntczTWqKHSe2huPbdAn4jyIahhc67GLRM,716129
|
|
7
|
+
pmdsky_debug_py/na.py,sha256=_e1oBsDm5vnwH8RELVFpNrobYzJbSLPtUoMIdEyjw-k,755591
|
|
8
|
+
pmdsky_debug_py/na_itcm.py,sha256=fM_0NnPEG2hMCB5OK7EbH02AH48nU1kOdeZRGqSxbeM,716140
|
|
9
|
+
pmdsky_debug_py/protocol.py,sha256=zWNOBsf_mNF_QLXHmJETuqerP_P-Dsk5T6QXo3NA17c,236193
|
|
10
|
+
pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
pmdsky_debug_py-5.1.16.dist-info/METADATA,sha256=ZZuZejFMJU2NO-mW8B__m5_YOrp5IT6ypg1GcDNV9co,1321
|
|
12
|
+
pmdsky_debug_py-5.1.16.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
13
|
+
pmdsky_debug_py-5.1.16.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
|
|
14
|
+
pmdsky_debug_py-5.1.16.dist-info/RECORD,,
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
|
|
2
|
-
pmdsky_debug_py/_release.py,sha256=oV9hmtoY94lwEnYsY2UNtAAvlBbygNCvuiXt7DGyezI,30
|
|
3
|
-
pmdsky_debug_py/eu.py,sha256=4vv6btvRcc4NFe_e3PK2gjgWUYJkEFdiQzVan67YXS8,745992
|
|
4
|
-
pmdsky_debug_py/eu_itcm.py,sha256=Rr_SYAJL7a7XAiXdPMjrKxEDvhkyPm2JIxqhAtThy3Q,713530
|
|
5
|
-
pmdsky_debug_py/jp.py,sha256=aXmV91mxefjZZqobY8qqV1GEhmYwEmHDMSunIitPx38,734619
|
|
6
|
-
pmdsky_debug_py/jp_itcm.py,sha256=I_v4fM6uPHlTeYxTRSWTFiNB1L_QTw0-B9rSZ1zuTKY,713530
|
|
7
|
-
pmdsky_debug_py/na.py,sha256=XRKakm7o6MhWhX4Ml_uG5n9-Pv3IFGIiVCb1dCM67WE,752908
|
|
8
|
-
pmdsky_debug_py/na_itcm.py,sha256=cBju4JEyQNsQpcXI9jCrM3APSsytNzbjdfLD_drVPjc,713541
|
|
9
|
-
pmdsky_debug_py/protocol.py,sha256=HfRFcIConfuWp4ceoi9MxkAXol93qvROF0Zzc-5jDRk,235657
|
|
10
|
-
pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
pmdsky_debug_py-5.1.14.dist-info/METADATA,sha256=UJeFQdny0UtpsEeNB6HBTtRf5A2gmkAnNONrBcS-Jzk,1321
|
|
12
|
-
pmdsky_debug_py-5.1.14.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
13
|
-
pmdsky_debug_py-5.1.14.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
|
|
14
|
-
pmdsky_debug_py-5.1.14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|