We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ceec063 + 7a6ba31 commit c544b51Copy full SHA for c544b51
Inc/symbols.h
@@ -26,11 +26,11 @@ extern "C" {
26
#define NO_FUNCTION 0xffffffff /* No function defined */
27
#define NO_DESTADDRESS 0xffffffe0 /* No address defined */
28
29
-#define SPECIALS_MASK 0xfffffff0
30
-#define FN_SLEEPING (SPECIALS_MASK|0xb) /* Marker for sleeping case */
+#define SPECIALS_MASK 0xffffff80
+#define FN_SLEEPING (SPECIALS_MASK|0xfb) /* Marker for sleeping case */
31
#define FN_SLEEPING_STR "** Sleeping **" /* String for sleeping case */
32
33
-#define INTERRUPT (SPECIALS_MASK|0xd)
+#define INTERRUPT (SPECIALS_MASK|0xfd)
34
#define FN_INTERRUPT_STR "INTERRUPT"
35
36
enum symbolErr { SYMBOL_OK, SYMBOL_NOELF, SYMBOL_NOOBJDUMP, SYMBOL_UNSPECIFIED };
0 commit comments