| 375 | } |
| 376 | |
| 377 | int R5900DebugInterface::getRegisterSize(int cat) |
| 378 | { |
| 379 | switch (cat) |
| 380 | { |
| 381 | case EECAT_GPR: |
| 382 | case EECAT_VU0F: |
| 383 | return 128; |
| 384 | case EECAT_CP0: |
| 385 | case EECAT_FPR: |
| 386 | case EECAT_FCR: |
| 387 | case EECAT_VU0I: |
| 388 | return 32; |
| 389 | case EECAT_GSPRIV: |
| 390 | return 64; |
| 391 | default: |
| 392 | return 0; |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | int R5900DebugInterface::getRegisterCount(int cat) |
| 397 | { |
no outgoing calls
no test coverage detected