mirror of
https://git.citron-emu.org/Citron/Emulator.git
synced 2025-12-31 07:37:06 +00:00
chore: update project references and add Citron copyright
- Replaced all references to the old project name with Citron. - Added Citron copyright information alongside existing notices in all files.
This commit is contained in:
parent
6778aa8ec8
commit
b3facaa6bb
2802 changed files with 60643 additions and 60643 deletions
|
|
@ -39,9 +39,9 @@ namespace Core::Memory {
|
|||
* Page size used by the ARM architecture. This is the smallest granularity with which memory can
|
||||
* be mapped.
|
||||
*/
|
||||
constexpr std::size_t YUZU_PAGEBITS = 12;
|
||||
constexpr u64 YUZU_PAGESIZE = 1ULL << YUZU_PAGEBITS;
|
||||
constexpr u64 YUZU_PAGEMASK = YUZU_PAGESIZE - 1;
|
||||
constexpr std::size_t CITRON_PAGEBITS = 12;
|
||||
constexpr u64 CITRON_PAGESIZE = 1ULL << CITRON_PAGEBITS;
|
||||
constexpr u64 CITRON_PAGEMASK = CITRON_PAGESIZE - 1;
|
||||
|
||||
/// Virtual user-space memory regions
|
||||
enum : u64 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue