I sometimes see statements that on some platforms the following C or C++ code:
int* ptr; *ptr = 0;
can result in writing to a hardware input-ou
An NDIS driver on Windows is an example. This is called memory mapped I/O and the benefit of this is performance.