Patch: Fix bus access alignment issue, modrm byte handler enhanced.

This commit is contained in:
0x221E
2026-02-04 22:28:36 +01:00
parent 4671a62ddf
commit b1a012fb82
14 changed files with 202 additions and 111 deletions

View File

@@ -5,6 +5,6 @@
Bus::Bus() {
for(int i = 0; i < 992 * 1024; i++)
{
m_RAM[i] = 0;
m_RAM[i] = 0x90;
}
}