URL
https://opencores.org/ocsvn/tv80/tv80/trunk
Subversion Repositories tv80
[/] [tv80/] [trunk/] [sc_env/] [di_mux.cpp] - Rev 112
Go to most recent revision | Compare with Previous | Blame | View Log
#include "di_mux.h" void di_mux::event() { uart_cs_n = 1; if (!mreq_n) { di = di_mem; } else if (!iorq_n) { if ((addr & 0xF8) == 0x18) { di = di_uart; uart_cs_n = 0; } else di = di_resp; } else di = 0; }
Go to most recent revision | Compare with Previous | Blame | View Log