CPU and MMU cleanups and fixes, and non-Debug builds are now stripped again.

This commit is contained in:
OBattler
2021-04-10 07:18:47 +02:00
parent 99ca313565
commit c370ae7e18
22 changed files with 3488 additions and 4367 deletions

View File

@@ -18,7 +18,7 @@ opSYSCALL(uint32_t fetchdat)
{
int ret;
ILLEGAL_ON(!(amd_efer & 0x0000000000000001));
ILLEGAL_ON(!(msr.amd_efer & 0x0000000000000001));
ret = syscall_op(fetchdat);
@@ -38,7 +38,7 @@ opSYSRET(uint32_t fetchdat)
{
int ret;
ILLEGAL_ON(!(amd_efer & 0x0000000000000001));
ILLEGAL_ON(!(msr.amd_efer & 0x0000000000000001));
ret = sysret(fetchdat);