Can someone please explain the meaning of
outb(0x10,short_base+2);
I tried figuring out by googling it, but for no use.
Can someone please explain the meaning of
outb(0x10,short_base+2);
I tried figuring out by googling it, but for no use.
To answer your question:
outb is a function wrapper to an assembly instruction with the same name, used to talk to port-mapped devices e.g. the I/O address range 0x60-0x6F is used for the keyboard in IBM PC compatible computers.
Now, what is port-mapped IO?
A CPU-to-peripheral communication method, and it is used when the processor uses a different address bus to talk to devices and memory, thus needing special instructions.
Memory-mapped I/O is the other and most common method nowadays, where no special instructions are needed, as everything lives in the same address space.
System calls are described in section 2 of the man pages:
man 2 outb