From: nealcrook Date: Wed, 23 Nov 2016 09:47:42 +0000 (+0000) Subject: remove duplicated "#ifdef PAGEDMEM" X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=347d66f2faf067c02c0552dd8ac2aa2356232696;p=FUZIX.git remove duplicated "#ifdef PAGEDMEM" --- 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