From 347d66f2faf067c02c0552dd8ac2aa2356232696 Mon Sep 17 00:00:00 2001 From: nealcrook Date: Wed, 23 Nov 2016 09:47:42 +0000 Subject: [PATCH] remove duplicated "#ifdef PAGEDMEM" --- Applications/BCPL/blib.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Applications/BCPL/blib.c b/Applications/BCPL/blib.c index a33ba8b6..ad96e30b 100644 --- a/Applications/BCPL/blib.c +++ b/Applications/BCPL/blib.c @@ -24,17 +24,6 @@ uint16_t rdM(uint16_t addr); extern uint16_t *M; #define wrM(address, data) M[address]=data -#define add2M(address, data) M[address]+=data -#define rdM(address) M[address] -#endif - -/* Abstract away the difference between the paged and non-paged implementations */ -#ifdef PAGEDMEM - -#else - -#define wrM(address, data) M[address]=data -#define add2M(address, data) M[address]+=data #define rdM(address) M[address] #endif -- 2.34.1