Implemented many more OpCodes

This commit is contained in:
2026-04-13 21:19:05 +01:00
parent c642f7a6c6
commit 2b40960496
4 changed files with 222 additions and 52 deletions

View File

@@ -42,5 +42,10 @@ namespace Core.Memory
// Copy the ROM
Array.Copy(romData, 0, _memory, 0, romData.Length);
}
public void ClearRam()
{
//To Do
}
}
}