From d54cf16a133fd6eb1abed2d1bb0930a367d7ee6e Mon Sep 17 00:00:00 2001 From: Daniel Beer Date: Thu, 18 Jul 2013 13:56:04 +1200 Subject: [PATCH] util: add ADDRESS_NONE definition. --- util/util.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/util.h b/util/util.h index 42a5ccb..b880caf 100644 --- a/util/util.h +++ b/util/util.h @@ -31,6 +31,8 @@ /* This type fits an MSP430X register value */ typedef uint32_t address_t; +#define ADDRESS_NONE ((address_t)0xffffffff) + /* Retrive a string describing the last system error */ const char *last_error(void);