From e2165edf4f2b6d176633051541de66333b495b71 Mon Sep 17 00:00:00 2001 From: bubio Date: Fri, 13 Feb 2026 19:13:32 +0900 Subject: [PATCH] =?UTF-8?q?i8251:=20Linux=E3=81=A7=E6=9C=AA=E5=AE=9A?= =?UTF-8?q?=E7=BE=A9=E3=81=AB=E3=81=AA=E3=82=8Buint8=5Ft=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E3=82=92uint8=E3=81=B8=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Source/ePC-8801MA/vm/i8251.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/ePC-8801MA/vm/i8251.cpp b/Source/ePC-8801MA/vm/i8251.cpp index b4f9ea7..467be20 100644 --- a/Source/ePC-8801MA/vm/i8251.cpp +++ b/Source/ePC-8801MA/vm/i8251.cpp @@ -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); } @@ -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);