First post, by deimond
Hi,
I'm trying to run some old software that uses multiport isa adapter.
Software communicate on port com3(this is port 1 on multiport isa card) (adress 2a0 irq5 - hardcoded in software).
All i want to do is to recompile code of megabuild that com3 base address were 2a0 and irq 5. Then I will redirect this to realport of my computer.
I've changed
extern CSerial* serialports[];
const Bit8u serial_defaultirq[] = { 4, 3, 5, 3 };
const Bit16u serial_baseaddr[] = {0x3f8,0x2f8,0x2a0,0x2e8};
const char* const serial_comname[]={"COM1","COM2","COM3","COM4"};
in serialport.h
but still i have no comunication ,
Can you help me with this?