Hello Elwakeel,
About the TRF7960, Texas sells a eval kit for it
http://focus.ti.com/docs/toolsw/folders/print/trf7960evm.htmlFortunately the source code (even in C, so must be portable to other uP) can be freely downloaded at
http://focus.ti.com/lit/sw/sloc136/sloc136.zipPlease take a look at 14443.c, they clearly describe how to fill the FIFO, per example:
....
buf[0] = 0x8f;
buf[1] = 0x91; /* buffer setup for FIFO writing */
buf[2] = 0x3d;
buf[3] = 0x00;
buf[4] = 0x70;
buf[5] = select;
buf[6] = 0x70;
RAWwrite(buf, 12); /* send the request using RAW writing */