- the big mergecheit

This commit is contained in:
2025-07-21 19:21:18 +02:00
parent 300f95803e
commit 13354b855d
17 changed files with 273 additions and 19 deletions

View File

@@ -6,7 +6,7 @@
#include <stdio.h>
#define ZX_128MEM_PAGE 0x07
#define ZX_128MEM_SCREEN 0x04
#define ZX_128MEM_SCREEN 0x08
#define ZX_128MEM_ROM 0x10
#define ZX_128MEM_DISPAG 0x20
@@ -157,4 +157,9 @@ uint32_t zx_128mem::getSize()
uint8_t *zx_128mem::rawPtr(uint32_t address)
{
return &memory[address];
}
}
uint8_t *zx_128mem::rawTagPtr(uint32_t address)
{
return &tags[address];
}