Improving debugger.
This commit is contained in:
@@ -66,7 +66,7 @@ t_token_op tkn_tokens[] = {
|
||||
{ "wait", TOKEN_WAIT },
|
||||
};
|
||||
|
||||
static char hex_digit(const char digit) { return digit - (digit < 57 ? 48 : 55); }
|
||||
static char hex_digit(const char digit) { return digit - (digit <= 57 ? 48 : 55); }
|
||||
|
||||
#define CCHR *ptr
|
||||
#define NEXT if(*ptr==10){line++;row=0;}else{row++;};ptr++
|
||||
|
||||
Reference in New Issue
Block a user