x86_64: serial: write COM1 output to Bochs console

This commit is contained in:
2026-04-19 19:34:49 +01:00
parent 05b1d39241
commit c7c497cd66
+4
View File
@@ -28,6 +28,10 @@ void serial_send_byte(int device, char out)
outportb(device, out);
if (device == COM1) {
outportb(0xe9, out);
}
while (!transmit_empty(device)) {
_count++;
}