summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2017-12-07 15:58:46 +0100
committerAraq <rumpf_a@web.de>2017-12-07 15:58:46 +0100
commit226532f8f39e8d37d392282ed57aa891c0e69736 (patch)
tree3658c550a82aa15a1669ee535866371c79f4923e /lib
parent7c9a3161daaf971303779c9d2199474b2d955082 (diff)
downloadNim-226532f8f39e8d37d392282ed57aa891c0e69736.tar.gz
cleanup todo.txt
Diffstat (limited to 'lib')
-rw-r--r--lib/system/mmdisp.nim3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/system/mmdisp.nim b/lib/system/mmdisp.nim
index d65d8a10e..9ac039e19 100644
--- a/lib/system/mmdisp.nim
+++ b/lib/system/mmdisp.nim
@@ -42,7 +42,8 @@ type
 # Page size of the system; in most cases 4096 bytes. For exotic OS or
 # CPU this needs to be changed:
 const
-  PageShift = when defined(cpu16): 8 else: 12
+  PageShift = when defined(cpu16): 8 else: 12 # \
+    # my tests showed no improvments for using larger page sizes.
   PageSize = 1 shl PageShift
   PageMask = PageSize-1