From: Alan Cox Date: Thu, 3 Aug 2017 10:58:05 +0000 (+0100) Subject: usermem: remove old FIXME X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=7c0f311e097dfe5332e2138f74c329bff9a9f7cb;p=FUZIX.git usermem: remove old FIXME --- diff --git a/Kernel/usermem.c b/Kernel/usermem.c index 43d987c2..4137ac69 100644 --- a/Kernel/usermem.c +++ b/Kernel/usermem.c @@ -16,8 +16,6 @@ /* This checks to see if a user-supplied address is legitimate */ usize_t valaddr(const char *base, usize_t size) { - /* FIXME: for Z80 we should make this a udata field so that cp/m - emulation alone can touch below 0x100 */ if (!base || base < (const char *)PROGBASE || base + size < base) size = 0; else if (base + size > (const char *)(size_t)udata.u_top)