commit | 7a72670104742457c5094f2d4a85a4757c2a244f | [log] [tgz] |
---|---|---|
author | Richard Henderson <rth@twiddle.net> | Mon Jul 08 11:49:21 2013 -0700 |
committer | Richard Henderson <rth@twiddle.net> | Mon Jul 08 11:49:21 2013 -0700 |
tree | aaa3dc8b77c40a72332fc4da9873f60c2b2c09e9 | |
parent | e959a30a6a5a781606431f3c65e7ed6356940d6e [diff] |
Don't initialize COM2. At least not until we implement MCHK handling. The current QEMU will (properly) MCHK when accessing a non-existant device.
diff --git a/uart.c b/uart.c index cf2615e..61e467a 100644 --- a/uart.c +++ b/uart.c
@@ -139,5 +139,5 @@ void uart_init(void) { uart_init_line(COM1, SERIAL_SPEED); - uart_init_line(COM2, SERIAL_SPEED); + /* uart_init_line(COM2, SERIAL_SPEED); */ }