File tree 1 file changed +0
-3
lines changed
1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -293,14 +293,12 @@ uint8_t sio2_in(ceda_ioaddr_t address) {
293
293
#endif
294
294
295
295
if (address == SIO2_CHA_DATA_REG ) {
296
- // TODO(giomba): read external RS232
297
296
return sio_channel_read_data (& channels [SIO_CHANNEL_A ]);
298
297
}
299
298
if (address == SIO2_CHA_CONTROL_REG ) {
300
299
return sio_channel_read_control (& channels [SIO_CHANNEL_A ]);
301
300
}
302
301
if (address == SIO2_CHB_DATA_REG ) {
303
- // TODO(giomba): read keyboard input
304
302
return sio_channel_read_data (& channels [SIO_CHANNEL_B ]);
305
303
}
306
304
if (address == SIO2_CHB_CONTROL_REG ) {
@@ -317,7 +315,6 @@ void sio2_out(ceda_ioaddr_t address, uint8_t value) {
317
315
LOG_DEBUG ("sio2 out: address = %02x, value = %02x\n" , address , value );
318
316
319
317
if (address == SIO2_CHA_DATA_REG ) {
320
- // TODO(giomba): write external RS232
321
318
sio_channel_write_data (& channels [SIO_CHANNEL_A ], value );
322
319
} else if (address == SIO2_CHA_CONTROL_REG ) {
323
320
sio_channel_write_control (& channels [SIO_CHANNEL_A ], value );
You can’t perform that action at this time.
0 commit comments