From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Wozniak Date: Wed, 16 Nov 2005 09:57:29 -0500 Subject: [U-Boot-Users] examples solved In-Reply-To: <6a7ac2300511160647s370dab42m7ac968e852637484@mail.gmail.com> References: <6a7ac2300511160647s370dab42m7ac968e852637484@mail.gmail.com> Message-ID: <437B48D9.3010404@mc.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de John Davis wrote: > Hello > > Thanks for the tip Wolfgang. I had looked at the page in the Readme > file, but looking at it again caused me to notice that they are using > the .bin file and the go address is one word past the load address. Congrats on this long and winding road... If you intend to create your own "u-boot applet", dig into the docs and source code - especially if your applet needs to use additional library functions supplied by u-boot. i.e. exports. > Many thanks. > > => loadb 40000 > > ## Total Size = 0x00010300 = 66304 Bytes > ## Start Addr = 0x00040000 > => go 40004 > ## Starting application at 0x00040004 ... > Example expects ABI version 2 > Actual U-Boot ABI version 2 > Hello World > argc = 1 > argv[0] = "40004" > argv[1] = "" > Hit any key to exit ... > > > JD