diff options
author | 2008-08-25 15:32:14 +0000 | |
---|---|---|
committer | 2008-08-25 15:32:14 +0000 | |
commit | 3d339e51f75c0ee529dab937fd54174c72f1e741 (patch) | |
tree | fa85c6d42285bf176c691d0eb2d7951751be127f /src/ldplayer/ldplayer.mak | |
parent | 4db67471be1d402ba4af138bbe7bc99be69c58d3 (diff) |
Changed i8039 core to use the data address space for internal RAM.
Register access is still performed using direct memory accesses,
but the pointers are fetched through the memory system. Now you can
see i8039 RAM in the debugger. Added internal memory maps of the
appropriate size so that drivers don't need to declare this RAM.
Added a number of variants from the MCS-48 family as it was not
clear which variants had what capabilities. All documented variants
now have internal memory maps for internal ROM and RAM. Removed
memory maps from drivers using embedded ROM/EPROM/OTPROM since
they are defined by the core now.
Added some initial logic to boot and run the PR-8210 ROM (i8049)
in ldplayer.c. Currently this is disabled behind a compile-time
switch. Once this is working, the plan is to incorporate this into
the existing PR-8210 emulation, but we're not there yet.
Diffstat (limited to 'src/ldplayer/ldplayer.mak')
-rw-r--r-- | src/ldplayer/ldplayer.mak | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ldplayer/ldplayer.mak b/src/ldplayer/ldplayer.mak index c95644e5f88..b388a60e978 100644 --- a/src/ldplayer/ldplayer.mak +++ b/src/ldplayer/ldplayer.mak @@ -22,6 +22,8 @@ OBJDIRS += \ # specify required CPU cores (none) #------------------------------------------------- +CPUS += I8049 + #------------------------------------------------- |