I am following Serial Ports Tutorial.
In the Initilization section, modem control register is written multiple times with different flags.
Code: Select all
outb(PORT + 4, 0x0B);
Code: Select all
outb(PORT + 4, 0x1E);
I understand that by writing 0x1E to modem register, loopback mode is activated. But, what is the purpose of writing 0x0B to it first?
Best Regards,