From 7c0f311e097dfe5332e2138f74c329bff9a9f7cb Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Thu, 3 Aug 2017 11:58:05 +0100 Subject: [PATCH] usermem: remove old FIXME --- Kernel/usermem.c | 2 -- 1 file changed, 2 deletions(-) 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) -- 2.34.1