On 01/12/2013 09:42 AM, Holm Tiffe wrote:
/* Diplay '1' on TIL311 */
*(int *)(0x201ffffc)=(0xf-1)<<16;
Note that gcc may do something else with this since it so not know
better :-)
To be really sure what happens instead write asm("movl
$0xe0000,0x201ffffc"); to be sure you write a longword to the correct
address.
-- R