We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There has been a modification to the page table initialization code in Circle 38. This requires an update to the Alpha load.gdb file as follows:
diff --git a/load.gdb b/load.gdb index 78c9a18..cc45877 100644 --- a/load.gdb +++ b/load.gdb @@ -70,7 +70,7 @@ set $Alpha_serial_write = $Alpha_address + 0x1500 # Add execution to the Alpha memory space in MMU Page Table tbreak CMemorySystem::EnableMMU() command - set m_pPageTable0Default->m_pTable[ $Alpha_address / 0x100000 ].XNBit = 0 + set m_pPageTable->m_pTable[ $Alpha_address / 0x100000 ] &= ~0x10 continue end
The text was updated successfully, but these errors were encountered:
Another one: signature of CSerialDevice has changed:
-tbreak *CSerialDevice::CSerialDevice(CInterruptSystem*, bool) +tbreak *CSerialDevice::CSerialDevice(CInterruptSystem*, bool, unsigned int)
Sorry, something went wrong.
No branches or pull requests
There has been a modification to the page table initialization code in Circle 38. This requires an update to the Alpha load.gdb file as follows:
The text was updated successfully, but these errors were encountered: