[no subject]

2011-05-31 Thread teletep
http://www.horseheavenmustang.com/find11.html___ xorg@lists.freedesktop.org: X.Org support Archives: http://lists.freedesktop.org/archives/xorg Info: http://lists.freedesktop.org/mailman/listinfo/xorg Your subscription address: arch...@mail-archive.com

[no subject]

2011-05-31 Thread teletep
http://suf2004.atwebpages.com/find11.html___ xorg@lists.freedesktop.org: X.Org support Archives: http://lists.freedesktop.org/archives/xorg Info: http://lists.freedesktop.org/mailman/listinfo/xorg Your subscription address: arch...@mail-archive.com

[no subject]

2011-05-30 Thread teletep
http://studioartax.com/find11.html___ xorg@lists.freedesktop.org: X.Org support Archives: http://lists.freedesktop.org/archives/xorg Info: http://lists.freedesktop.org/mailman/listinfo/xorg Your subscription address: arch...@mail-archive.com

[c-prog] Re: memory access questions

2008-07-08 Thread teletep
dispatch tables, etc. (Platform dependent off course). Teletep --- In c-prog@yahoogroups.com, John Gaughan [EMAIL PROTECTED] wrote: teletep wrote: I know assembly, but i don't know how to embed it in C. Do you know a simple tutorial on inline asm? (preferably PPC). While embedded

[c-prog] Re: memory access questions

2008-07-05 Thread teletep
know assembly, but i don't know how to embed it in C. Do you know a simple tutorial on inline asm? (preferably PPC). Thank you. Teletep --- In c-prog@yahoogroups.com, Paul Herring [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 12:13 PM, teletep [EMAIL PROTECTED] wrote: Q5. store the address

[c-prog] Re: memory access questions

2008-07-03 Thread teletep
via function Q9. sign-extent (1-2, 1-4, 2-4) Q10. accessing none aligned 2-byte/4-byte words I have ideas, but i lack knowledge of c. Improvements and help appreciated. Thankx Teletep

[c-prog] Re: memory access questions

2008-07-03 Thread teletep
--- In c-prog@yahoogroups.com, Paul Herring [EMAIL PROTECTED] wrote: On Tue, Jul 1, 2008 at 8:05 PM, teletep [EMAIL PROTECTED] wrote: for 1-byte access: index = memoryaddress - array-base for 2-byte access: index = (memoryaddress - array-base)/2 for 4-byte access: index = (memoryaddress

[c-prog] memory access questions

2008-06-30 Thread teletep
) . try to minimize the generated code . dont use C++ (restrict to ansi C if possible) Thankx Teletep

[c-prog] Re: memory access questions

2008-06-30 Thread teletep
. How do i tell my compiler to accept a int value as an address? It must be possible in C. How else can debuggers be written in C? Kind regards, Teletep --- In c-prog@yahoogroups.com, Paul Herring [EMAIL PROTECTED] wrote: On Mon, Jun 30, 2008 at 12:46 PM, teletep [EMAIL PROTECTED] wrote: Hi

[c-prog] Re: memory access questions

2008-06-30 Thread teletep
, teletep [EMAIL PROTECTED] wrote: Thank you Paul. I agree that no solutions can be found using ansi C. I figured out Q4. The answer is: r[n]=(int)r[m]; For Q5, my compiler refuses xxx where xxx is the name of a label. I missed that question when I was reading through it earlier - labels