|
From: <sba...@us...> - 2023-10-08 05:31:52
|
This is an automated email from the git hooks/post-receive-user script. sbaldovi pushed a commit to branch master in repository fuse. View the commit online: https://sourceforge.net/p/fuse-emulator/fuse/ci/eacc10071ed98d6da148bf145030154cd1ac4e4f/ The following commit(s) were added to refs/heads/master by this push: new eacc1007 Group empty memory mapping of Spectrum 16K on debugger eacc1007 is described below commit eacc10071ed98d6da148bf145030154cd1ac4e4f Author: Sergio Baldoví <ser...@gm...> AuthorDate: Sun Oct 8 07:31:29 2023 +0200 Group empty memory mapping of Spectrum 16K on debugger --- machines/spec16.c | 1 + 1 file changed, 1 insertion(+) diff --git a/machines/spec16.c b/machines/spec16.c index ef7b108a..acee8f62 100644 --- a/machines/spec16.c +++ b/machines/spec16.c @@ -78,6 +78,7 @@ ensure_empty_mapping( void ) for( i = 0; i < MEMORY_PAGES_IN_16K; i++ ) { memory_page *page = &empty_mapping[i]; page->page = empty_chunk + i * MEMORY_PAGE_SIZE; + page->offset = i * MEMORY_PAGE_SIZE; page->writable = 0; page->contended = 0; page->source = memory_source_none; |