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

JTAG semantics are read before write.

parent 5f43b365
......@@ -41,8 +41,8 @@ void LM32Base::sendrecv_keyval(unsigned int key, uint8_t b) {
if (lm32_read_write.connected()) {
lm32_read_write(x);
} else {
lm32_write(x);
lm32_read();
lm32_write(x);
}
#ifdef DEBUG_LM32_JTAG
......@@ -59,7 +59,7 @@ void LM32Base::read_byte() {
}
#ifdef DEBUG_LM32_JTAG
std::cerr << "LM32 RW: 0, 0" << std::endl;
std::cerr << "LM32 R (W0)" << std::endl;
#endif
}
......
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