Re: [Hardhats-members] philosophy???

2005-07-17 Thread Chris Richardson
I seem to remember a one-legged robot that hopped. It was funny to watch, amazingly quick, and a bit jumpy. It was kind of a box around a pogo-stick. Very cool. - Original Message - From: James Gray [EMAIL PROTECTED] To: hardhats-members@lists.sourceforge.net Sent: Wednesday, July 13,

Re: [Hardhats-members] philosophy???

2005-07-17 Thread Gregory Woodhouse
I remember it, too, along with robotic snakes, and other interesting approaches to locomotion. === Gregory Woodhouse [EMAIL PROTECTED] The whole of science is nothing more than a refinement of everyday thinking. -- Albert Einstein On Jul 17, 2005, at 5:16 PM, Chris Richardson wrote: I

Re: [Hardhats-members] Does W ! flush an output buffer?

2005-07-17 Thread Chris Richardson
10 is Line Feed, 12 is Form Feed 13 is Carriage Return In the teletype exchange with the teletype, the process would send the line feed and the teletype would respond with the carriage return as an acknowledgement of the line-feed (a shorthand for an x-on/x-off protocol). It took a long time for

Re: [Hardhats-members] m and database links

2005-07-17 Thread Chris Richardson
Why bother going from MUMPS to C? MUMPS is faster than most other database access methods. The major problem with code translators is that the code they usually generate is not very supportable and nearly impossible to modify. It would be far better to embark on a modernization program for the

Re: [Hardhats-members] m and database links

2005-07-17 Thread Gregory Woodhouse
If you really want to see (no pun intended) what I compiler does with your C code, try the -S option. No doubt, what an M to C translator would do to most M code is similar. (Actually, the question of whether or not it is possible to automatically generate well structured code is an

Re: [Hardhats-members] m and database links

2005-07-17 Thread Nancy Anthracite
OK, put that in English. What is the -S option? My guess that since M is written in C, that it is what happens to M when it is compiled before it becomes machine language ?? On Monday 18 July 2005 12:04 am, Gregory Woodhouse wrote: If you really want to see (no pun intended) what I compiler

Re: [Hardhats-members] m and database links

2005-07-17 Thread Gregory Woodhouse
Compilers don't really generate assembly code (at least not anymore), but the -S option requests the compiler to produce a file containing a (PowerPC in this case) assembly language file representing the machine code that is actually generated. Typically, compilers will rewrite code

Re: [Hardhats-members] m and database links

2005-07-17 Thread Gregory Woodhouse
Compiler design is a fascinating topic. I believe it is this together with operating systems that really got me hooked on computers. I couldn't put down Andrew Tanenbaum's MINIX book, it was simply fascinating. Of course, at the time I was working on my degree in mathematics. For some