arm64: Rename memory.h to guest.h

The term "memory" is really ambiguous in the context of an emulator,
especially since the MMU is being developed. It can refer to host memory, or
guest memory, or both.

Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
Ronald Caesar 2025-08-16 18:17:59 -04:00
parent 58587bf754
commit b11f04912d
4 changed files with 1 additions and 2 deletions

1
.gitignore vendored
View file

@ -26,7 +26,6 @@ x64/
x86/
[Ww][Ii][Nn]32/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/

View file

@ -1,6 +1,6 @@
#include "isa.h"
#include "Base/Assert.h"
#include "memory.h"
#include "guest.h"
#include "memory/arena.h"
namespace pound::arm64