visual: remove prc=a mode (#3758)

This commit is contained in:
Anton Kochkov 2023-08-17 16:04:38 +08:00 committed by GitHub
parent d8aeabb501
commit e26ae5f63c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,7 @@ const char *print3Formats[PRINT_3_FORMATS] = { // not used at all. its handled
};
const char *print4Formats[PRINT_4_FORMATS] = {
"prc", "prc=a", "pxAv", "pxx", "p=e $r-2", "pk 64"
"prc", "pxA", "pxx", "p=e $r-2", "pk 64"
};
const char *print5Formats[PRINT_5_FORMATS] = {

View file

@ -16,7 +16,7 @@ extern const char *printfmtColumns[NPF];
// to print the stack in the debugger view
#define PRINT_HEX_FORMATS 10
#define PRINT_3_FORMATS 2
#define PRINT_4_FORMATS 7
#define PRINT_4_FORMATS 5
#define PRINT_5_FORMATS 8
extern const char *printHexFormats[PRINT_HEX_FORMATS];