Applied more upstream patches (finally, removing cdrom_null !)

This commit is contained in:
waltje
2018-10-19 04:20:34 -04:00
parent af443c0f04
commit 6bd70019c1
10 changed files with 269 additions and 417 deletions

View File

@@ -8,7 +8,7 @@
*
* Memory handling and MMU.
*
* Version: @(#)mem.c 1.0.23 2018/10/16
* Version: @(#)mem.c 1.0.24 2018/10/18
*
* Authors: Fred N. van Kempen, <decwiz@yahoo.com>
* Miran Grca, <mgrca8@gmail.com>
@@ -1805,7 +1805,7 @@ mem_reset_page_blocks(void)
if (pages == NULL) return;
for (c = 0; c < ((mem_size * 1024) >> 12); c++) {
for (c = 0; c < pages_sz; c++) {
pages[c].write_b = mem_write_ramb_page;
pages[c].write_w = mem_write_ramw_page;
pages[c].write_l = mem_write_raml_page;