Commit 5f43b365 authored by Wesley W. Terpstra's avatar Wesley W. Terpstra

PCIe is too fast for the LM32 to keep up.

Confirm reads/writes.
parent 46ed2875
......@@ -32,6 +32,7 @@ SendQueue::const_iterator LM32Read::send(SendQueue::const_iterator i, SendQueue:
if (!ready && safe) {
read_byte();
report.push(1);
return i;
}
......
......@@ -48,8 +48,8 @@ int main() {
Arbiter lm32_r(&ic, true);
LM32Break lm32break(&ic);
LM32Reboot lm32reboot(&ic);
LM32Write lm32write(&ic, false);
LM32Read lm32read(&ic, false);
LM32Write lm32write(&ic, true);
LM32Read lm32read(&ic, true);
LM32DROM lm32drom(&ic);
GDB_RSP gdb_rsp(&ic, 32, 32, lm32drom.PC, lm32drom.SP, lm32drom.SIG);
GDB_Serial gdb_serial(&ic);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment