|
Retro Rocket Kernel
BASIC-Powered Operating System
|
Data Structures | |
| struct | symbol_t |
| struct | stack_frame_t |
Macros | |
| #define | SYM_ABSOLUTE 'A' |
| #define | SYM_BSS 'B' |
| #define | SYM_COMMON 'C' |
| #define | SYM_INITIALISED 'D' |
| #define | SYM_SMALLOBJECT 'G' |
| #define | SYM_INDIRECT_REF 'I' |
| #define | SYM_DEBUGGING 'N' |
| #define | SYM_READONLY 'R' |
| #define | SYM_UNINITIALISED 'S' |
| #define | SYM_TEXT 'T' |
| #define | SYM_TEXT2 't' |
| #define | SYM_UNDEFINED 'U' |
| #define | SYM_WEAK_OBJECT 'V' |
| #define | SYM_WEAK_SYMBOL 'W' |
| #define | SYM_STABS '-' |
| #define | SYM_UNKNOWN '?' |
Functions | |
| void | dump_hex (void *address, uint64_t length) |
| print the contents of the specified memory address in hexadecimal format along with the corresponding ASCII characters. The function achieves this by iterating through the memory in chunks of 16 bytes and printing each chunk on a separate line. More... | |
| void | init_debug () |
| void | backtrace () |
| symbol_t * | get_sym_table () |
| #define SYM_ABSOLUTE 'A' |
| #define SYM_BSS 'B' |
| #define SYM_COMMON 'C' |
| #define SYM_DEBUGGING 'N' |
| #define SYM_INDIRECT_REF 'I' |
| #define SYM_INITIALISED 'D' |
| #define SYM_READONLY 'R' |
| #define SYM_SMALLOBJECT 'G' |
| #define SYM_STABS '-' |
| #define SYM_TEXT 'T' |
| #define SYM_TEXT2 't' |
| #define SYM_UNDEFINED 'U' |
| #define SYM_UNINITIALISED 'S' |
| #define SYM_UNKNOWN '?' |
| #define SYM_WEAK_OBJECT 'V' |
| #define SYM_WEAK_SYMBOL 'W' |
| void backtrace | ( | ) |
| void dump_hex | ( | void * | address, |
| uint64_t | length | ||
| ) |
print the contents of the specified memory address in hexadecimal format along with the corresponding ASCII characters. The function achieves this by iterating through the memory in chunks of 16 bytes and printing each chunk on a separate line.
| address | a pointer to some memory address |
| length | represents the number of bytes of memory that should be dumped. |
| symbol_t* get_sym_table | ( | ) |
| void init_debug | ( | ) |