Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Inc/symbols.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ extern "C" {
#define NO_FUNCTION 0xffffffff /* No function defined */
#define NO_DESTADDRESS 0xffffffe0 /* No address defined */

#define SPECIALS_MASK 0xfffffff0
#define FN_SLEEPING (SPECIALS_MASK|0xb) /* Marker for sleeping case */
#define SPECIALS_MASK 0xffffff80
#define FN_SLEEPING (SPECIALS_MASK|0xfb) /* Marker for sleeping case */
#define FN_SLEEPING_STR "** Sleeping **" /* String for sleeping case */

#define INTERRUPT (SPECIALS_MASK|0xd)
#define INTERRUPT (SPECIALS_MASK|0xfd)
#define FN_INTERRUPT_STR "INTERRUPT"

enum symbolErr { SYMBOL_OK, SYMBOL_NOELF, SYMBOL_NOOBJDUMP, SYMBOL_UNSPECIFIED };
Expand Down