msx1: update README
authorAlan Cox <alan@linux.intel.com>
Sat, 6 Oct 2018 00:02:21 +0000 (01:02 +0100)
committerAlan Cox <alan@linux.intel.com>
Sat, 6 Oct 2018 00:02:21 +0000 (01:02 +0100)
Kernel/platform-msx1/README.md
Kernel/platform-msx1/devices.c

index 8a4fd90..789104e 100644 (file)
@@ -49,6 +49,8 @@ Build the user map from the RAM map
 Finish the ROM and RAM map detection logic
 Disk I/O routines need bounce buffers for 4000-7FFF range due to the
 limited mapping system.
+Speed up all the ei/di mess by just keeping a private variable for irqoff
+state
 
 In Progress
 
@@ -62,13 +64,11 @@ Sunrise IDE support
 
 To do
 
-the detection logic by ROM hash and find the sunrise etc
+Detection logic by ROM hash and find the sunrise etc
 Sensible user copy routines: We know kernel data is always in common except
 some awkward corner cases (constants) going K->U. So we can spot the to user
 case of a 'low' source and bounce it or similar, while just doing a user
 map and ldir for the others. We badly need the cached path walk though!
-Speed up all the ei/di mess by just keeping a private variable for irqoff
-state
 Get common and discard and initialized in C000-FFFF of the ROM
 Then on boot up move SP to BFFF, map the ROM in the top 16K, copy it into
 8000-Bxxx and then restore the RAM, and copy it up. Then do the normal maps.
index 0dde6e7..8bd58b1 100644 (file)
@@ -104,5 +104,5 @@ void device_init(void)
     keyrepeat.first = 2 * ticks_per_dsecond;
     keyrepeat.continual = 1 * ticks_per_dsecond;
 
-    sunrise_probe(2,3);
+//    sunrise_probe(2,3);
 }