aboutsummaryrefslogtreecommitdiffstats
path: root/src/wiring/wiring.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wiring/wiring.h')
-rw-r--r--src/wiring/wiring.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wiring/wiring.h b/src/wiring/wiring.h
index 789e697..4bf93bc 100644
--- a/src/wiring/wiring.h
+++ b/src/wiring/wiring.h
@@ -26,6 +26,9 @@ extern "C"{
#define LSBFIRST 0
#define MSBFIRST 1
+#define USER_ADDR_ROM 0x08005000
+#define USER_ADDR_RAM 0x20000C00
+
#define lowByte(w) ((w) & 0xff)
#define highByte(w) ((w) >> 8)
#define bitRead(value, bit) (((value) >> (bit)) & 0x01)