Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Source/ePC-8801MA/vm/i8251.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ void I8251::event_callback(int event_id, int err)
status |= SYNDET;
write_signals(&outputs_syndet, 0xffffffff);
} else {
recv = (uint8_t)val;
recv = (uint8)val;
status |= RXRDY;
write_signals(&outputs_rxrdy, 0xffffffff);
}
Expand All @@ -205,7 +205,7 @@ void I8251::event_callback(int event_id, int err)
}
} else if(event_id == EVENT_SEND) {
if(txen && !send_buffer->empty()) {
uint8_t send = send_buffer->read();
uint8 send = send_buffer->read();
if(loopback) {
// send to this device
write_signal(SIG_I8251_RECV, send, 0xff);
Expand Down