mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:37:35 +00:00

Here's the first time we get a taste of better information than the real hardware can give us: unlike x86 CPUs, we can actually support write-only memory, so now we do! While this isn't immediately useful, it's still pretty cool. :^)
11 lines
205 B
CMake
11 lines
205 B
CMake
set(SOURCES
|
|
Emulator.cpp
|
|
MmapRegion.cpp
|
|
SimpleRegion.cpp
|
|
SoftCPU.cpp
|
|
SoftMMU.cpp
|
|
main.cpp
|
|
)
|
|
|
|
serenity_bin(UserspaceEmulator)
|
|
target_link_libraries(UserspaceEmulator LibX86 LibCore)
|