This was the topic that I have selected for my PG-diploma Seminar. It is actually google's pagerank algorithm developed by Larry Page and later joined by Sergey Brin, together they implemented Google. So here I am publishing my ppt which I compiled for the seminar.
Jul 28, 2010
What is boot code and stack initialisation in ARM
[Click here to download a sample complete project for arm. It uses gnuarm's arm-elf- toolchain for compilation and qemu emulator for to emulate]
This post is very much linked with my previous post arm-elf toolchain rough notes of my works...
Actually on powerON or reset, arm will start fetching and executing instructions from 0x00000000. As arm processes 32 bit instructions, each time PC is incremented by 4. like 0x00000000 0x00000004 0x0000000C like that....
This post is very much linked with my previous post arm-elf toolchain rough notes of my works...
Actually on powerON or reset, arm will start fetching and executing instructions from 0x00000000. As arm processes 32 bit instructions, each time PC is incremented by 4. like 0x00000000 0x00000004 0x0000000C like that....
Jul 26, 2010
android good links
Goto the following link for a very good explenation of broadcastreceiver
http://mobiforge.com/developing/story/sms-messaging-android
to write a broadcast receiver for phone calls goto following link
http://thinkandroid.wordpress.com/2010/02/02/custom-intents-and-broadcasting-with-receivers/
http://mobiforge.com/developing/story/sms-messaging-android
to write a broadcast receiver for phone calls goto following link
http://thinkandroid.wordpress.com/2010/02/02/custom-intents-and-broadcasting-with-receivers/
Jul 20, 2010
arm-elf- toolchain rough notes of my works......
scratches of my arm works... This is my rough backup.
This post explains how to develop a ready to run assembly code which works on an arm board from scratch. This includes boot.s crt.s and app.s.
This post explains how to develop a ready to run assembly code which works on an arm board from scratch. This includes boot.s crt.s and app.s.
Jul 12, 2010
an overview of arm board with mini2440
Mini2440 uses the samsung processor S3C2440 (arm7tdmi) from samsung.
Processor S3C2440
Flash: 2MB NOR or 64MB(128, 256) NAND. Selected using S2 switch.
SDRAM: 2 Nos - 32MB each So total 64MB. Which has a 32 bit data bus width for maximum speed. Chip select nGCS6 places the SDRAM in 0 x 3000 0000.
Use JTAG Interface to program NOR flash with supervivi bios.
Features of my interest....
Jul 8, 2010
CPU digest.
DMA Controller: It contains source address, destination address and the count of words going to transfer between source and destination. One problem that can occur due to this is cache coherency.
Intel C8237 is a DMA chip.
Jul 1, 2010
Java Com API settings. ( access comm port through java )
Get comm.jar, win32com.dll, javax.comm.properties files.
Then follow the steps.
Then follow the steps.
- copy comm.jar to jre
/bin - copy win32comm.dll to jre
/bin - copy javax.comm.properties to jre
/lib
Subscribe to:
Posts (Atom)
For Web Developer
open -a "Google Chrome" --args --disable-web-security
-
Square of 104 ( faster way.. ) Answer will have _ _ _ _ _ .That is five digits . add the 4 to the entire number that is 104+4 ...
-
So start an emulator with sdcard some things that I tried ----> emulator -sdcard sdcard1.iso -avd avd_1.5 mksdcard 8M sdcard emulator -sd...
-
I was thinking about designing a web application which can be used as a profile of us. A profile page which describe ourselves. What I had ...