mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
d5c46cf528
This Emulator sub-object will keep track of all active memory regions and handle memory read/write operations from the CPU. A memory region is currently represented by a virtual Region object that can implement arbitrary behavior by overriding read/write ops.
9 lines
165 B
CMake
9 lines
165 B
CMake
set(SOURCES
|
|
SoftCPU.cpp
|
|
SoftMMU.cpp
|
|
Emulator.cpp
|
|
main.cpp
|
|
)
|
|
|
|
serenity_bin(UserspaceEmulator)
|
|
target_link_libraries(UserspaceEmulator LibX86 LibCore)
|