Groups | Search | Server Info | Login | Register
Groups > comp.lang.forth > #23062
| Newsgroups | comp.lang.forth |
|---|---|
| Date | 2013-05-30 09:30 -0700 |
| References | (6 earlier) <7xwqqhslua.fsf@ruckus.brouhaha.com> <ko5l4f$diq$1@dont-email.me> <7xehcpc5ez.fsf@ruckus.brouhaha.com> <5682cd8a-fb07-46bc-9096-d3ad17a4387f@googlegroups.com> <7xa9ncdgh1.fsf@ruckus.brouhaha.com> |
| Message-ID | <7383f0da-9564-421e-ac96-667e15a0b8a9@googlegroups.com> (permalink) |
| Subject | Re: OT (slightly) What is the "best" processor for a new project? |
| From | Howerd <howerdo@yahoo.co.uk> |
On Thursday, May 30, 2013 10:22:50 AM UTC+2, Paul Rubin wrote: > Howerd <how....@yahoo.co.uk> writes: > > > Actually no, not really. The 128K figure comes from the MSP430F5xxx > > > series, where the low 64K address space also maps peripherals and > > > SRAM, up to about 28K, so there is only 36K of Flash that can be used > > > for executing programs, without resorting to long branches and calls. > > > > Ah, ok, I remember seeing 128k in your original post, but not a > > mention of how it was allocated. 36k still seems like an awful lot of > > misc code. > > > > > The 8051 programs that I do tend to have a handful of tasks - printer, > > > serial port, LCD+keypad, analog processing - using interupts where > > > possible. I think that this counts as "pretty complicated" compared > > > to the usual C-based programs that fit into 64K - usually this would > > > be done in an ARM with 256K Flash and a pre-emptive RTOS. > > > > I'd be interested to know your application if you don't mind saying. > > For something with that much complexity, unless you have hard realtime > > or power constraints or the like, it just seems so much easier to use > > something like a beagleboard or raspberry pi. Then you have tons of > > macine resources, a full featured OS with memory protection, higher > > level languages if you want those, etc. Hi Paul, > 36k still seems like an awful lot of misc code Not when most of it is 16 bit address tokens. I think that 36 + 64 = 100K is enough for anything I can foresee at the moment. > I'd be interested to know your application A good example of the sort of thing I do is the Westweigh Conveyer Belt Computer http://www.westweigh.com/cbc.php : 8051 with 64K Flash, 32K battery backed SRAM, 240x128 monochrome LCD, 16 key keypad, RTC, RS232 for printer, RS485 with Modbus. One of the main uses for this is a mobile rock crusher - the power comes from a 24V car battery that is also used to start the motor, so has a _lot_ of noise, plus the occasional lightning strike. The ADC is read on an interrupt and is accumulated, then processed every 200ms. The devil really is in the detail when it comes to the software - it supports two languages (there is probably room for 3, but more would require using the serial EEPROM which could slow the user interface down). The keypad runs off an interrupt and the LCD is 8 bit parallel so the user response is snappy, and you never have to wait for anything. The calibration data and totals are stored twice in the battery backed RAM, both copies are checked at power up, so this tolerates any corruption of just one of the banks. We have never had a data corruption since I added this in the early 1990s, I think because noise tends to zap only the small areas of RAM that are being addressed at the time. The serial printer port has a task that looks at DTR and waits for it to be stable for a second or so before printing. The printer task has a 4K queue, so if the printer is not plugged in it waits until it is, then prints. There is lots of 16 and 32 bit maths, plus some 48 bit, coded in 8051 assembler. Various data formats are supported on both RS232 and RS485, including Modbus. There is a 256 character font with glyphs for Russian Cyrillic, German, French, and Spanish, and language translation is handled by a Unicode file with every text string copied onto two lines, the first is in the original source code English and the second line is the translation which is used when selected. I presented a paper about this some years ago : http://www.inventio.co.uk/Multiple%20Language%20Programs%20Made%20Easy.htm . I just noticed that the above paper also describes another, earlier project... Projects like this have allowed me to have a lot of fun over the years in a way that is not possible with more complicated environments :-) Best regards, Howerd
Back to comp.lang.forth | Previous | Next — Previous in thread | Next in thread | Find similar
OT (slightly) What is the "best" processor for a new project? Howerd <howerdo@yahoo.co.uk> - 2013-05-26 10:45 -0700
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-26 12:47 -0700
Re: OT (slightly) What is the "best" processor for a new project? Howerd <howerdo@yahoo.co.uk> - 2013-05-26 14:07 -0700
Re: OT (slightly) What is the "best" processor for a new project? oh2aun@gmail.com - 2013-05-26 13:05 -0700
Re: OT (slightly) What is the "best" processor for a new project? Howerd <howerdo@yahoo.co.uk> - 2013-05-26 14:09 -0700
Re: OT (slightly) What is the "best" processor for a new project? oh2aun@gmail.com - 2013-05-26 20:37 -0700
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-27 05:21 -0500
Re: OT (slightly) What is the "best" processor for a new project? oh2aun@gmail.com - 2013-05-27 08:05 -0700
Re: OT (slightly) What is the "best" processor for a new project? Coos Haak <chforth@hccnet.nl> - 2013-05-27 17:45 +0200
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-27 08:58 -0700
Re: OT (slightly) What is the "best" processor for a new project? anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-05-27 15:57 +0000
Re: OT (slightly) What is the "best" processor for a new project? Coos Haak <chforth@hccnet.nl> - 2013-05-27 18:00 +0200
Re: OT (slightly) What is the "best" processor for a new project? oh2aun@gmail.com - 2013-05-27 09:54 -0700
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-27 12:19 -0500
Re: OT (slightly) What is the "best" processor for a new project? oh2aun@gmail.com - 2013-05-27 10:55 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-27 14:26 -0400
Re: OT (slightly) What is the "best" processor for a new project? oh2aun@gmail.com - 2013-05-27 12:19 -0700
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-27 15:22 -0500
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-27 17:49 -0400
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-27 15:00 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-27 18:08 -0400
Re: OT (slightly) What is the "best" processor for a new project? "Elizabeth D. Rather" <erather@forth.com> - 2013-05-27 12:52 -1000
Re: OT (slightly) What is the "best" processor for a new project? oh2aun@gmail.com - 2013-05-27 21:36 -0700
Re: OT (slightly) What is the "best" processor for a new project? albert@spenarnc.xs4all.nl (Albert van der Horst) - 2013-05-28 00:46 +0000
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-28 10:42 -0400
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-28 05:11 -0500
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-28 10:40 -0400
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-28 10:28 -0500
Re: OT (slightly) What is the "best" processor for a new project? anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-05-28 15:30 +0000
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-28 10:48 -0500
Re: OT (slightly) What is the "best" processor for a new project? Alex McDonald <blog@rivadpm.com> - 2013-05-28 09:30 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-28 19:02 -0400
Re: OT (slightly) What is the "best" processor for a new project? anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-05-28 16:33 +0000
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-28 11:51 -0500
Re: OT (slightly) What is the 'best' processor for a new project? mhx@iae.nl (Marcel Hendrix) - 2013-05-28 19:45 +0200
Re: OT (slightly) What is the 'best' processor for a new project? albert@spenarnc.xs4all.nl (Albert van der Horst) - 2013-05-29 03:41 +0000
Re: OT (slightly) What is the 'best' processor for a new project? Howerd <howerdo@yahoo.co.uk> - 2013-05-28 23:57 -0700
Re: OT (slightly) What is the 'best' processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-29 12:37 -0400
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-05-29 16:28 +0200
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-05-29 16:08 +0200
Re: OT (slightly) What is the "best" processor for a new project? Mikael Nordman <oh2aun@invalid.com> - 2013-05-29 19:31 +0200
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-05-29 19:42 +0200
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-29 12:55 -0500
Re: OT (slightly) What is the "best" processor for a new project? albert@spenarnc.xs4all.nl (Albert van der Horst) - 2013-05-29 18:06 +0000
Re: OT (slightly) What is the "best" processor for a new project? Mikael Nordman <oh2aun@invalid.com> - 2013-05-29 22:13 +0200
Re: OT (slightly) What is the "best" processor for a new project? Brad Eckert <hwfwguy@gmail.com> - 2013-05-29 14:35 -0700
Re: OT (slightly) What is the "best" processor for a new project? hughaguilar96@yahoo.com - 2013-05-29 21:34 -0700
Re: OT (slightly) What is the "best" processor for a new project? Mikael Nordman <oh2aun@invalid.com> - 2013-05-30 08:31 +0200
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-05-30 16:45 +0200
Re: OT (slightly) What is the "best" processor for a new project? hughaguilar96@yahoo.com - 2013-05-30 17:07 -0700
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-05-31 22:01 +0200
Re: OT (slightly) What is the "best" processor for a new project? Hugh Aguilar <hughaguilar96@yahoo.com> - 2013-06-01 23:26 -0700
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-06-03 01:42 +0200
Re: OT (slightly) What is the "best" processor for a new project? Hugh Aguilar <hughaguilar96@yahoo.com> - 2013-06-02 18:26 -0700
Re: OT (slightly) What is the "best" processor for a new project? Hugh Aguilar <hughaguilar96@yahoo.com> - 2013-06-03 21:35 -0700
Re: OT (slightly) What is the "best" processor for a new project? Hugh Aguilar <hughaguilar96@yahoo.com> - 2013-06-04 21:51 -0700
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-06-06 03:45 +0200
Re: OT (slightly) What is the "best" processor for a new project? Hugh Aguilar <hughaguilar96@yahoo.com> - 2013-06-05 22:25 -0700
Re: OT (slightly) What is the "best" processor for a new project? Brad Eckert <hwfwguy@gmail.com> - 2013-06-06 16:17 -0700
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-06-06 21:25 -0500
Re: OT (slightly) What is the "best" processor for a new project? Hugh Aguilar <hughaguilar96@yahoo.com> - 2013-06-06 20:41 -0700
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-06-07 08:26 -0500
Re: OT (slightly) What is the "best" processor for a new project? Jecel <jecel@merlintec.com> - 2013-06-07 15:49 -0700
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-06-07 21:43 -0500
Re: OT (slightly) What is the "best" processor for a new project? Steve <nospam275@gmail.com> - 2013-06-09 01:15 +1000
Re: OT (slightly) What is the "best" processor for a new project? Hugh Aguilar <hughaguilar96@yahoo.com> - 2013-06-08 22:20 -0700
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-06-09 08:33 -0500
Re: OT (slightly) What is the "best" processor for a new project? Alex McDonald <blog@rivadpm.com> - 2013-06-09 08:17 -0700
Re: OT (slightly) What is the "best" processor for a new project? albert@spenarnc.xs4all.nl (Albert van der Horst) - 2013-06-07 15:07 +0000
Re: OT (slightly) What is the "best" processor for a new project? Mark Wills <markrobertwills@yahoo.co.uk> - 2013-06-07 00:59 -0700
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-06-07 01:11 -0700
Re: OT (slightly) What is the "best" processor for a new project? anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-06-07 09:48 +0000
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-06-07 08:25 -0700
Re: OT (slightly) What is the "best" processor for a new project? anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-06-11 15:33 +0000
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-06-07 08:28 -0500
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-06-08 00:46 +0200
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-06-07 21:58 -0500
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-06-09 00:49 +0200
Re: OT (slightly) What is the "best" processor for a new project? Hugh Aguilar <hughaguilar96@yahoo.com> - 2013-06-08 22:24 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-27 12:08 -0400
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-27 09:40 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-27 13:13 -0400
Re: OT (slightly) What is the "best" processor for a new project? stephenXXX@mpeforth.com (Stephen Pelc) - 2013-05-27 17:18 +0000
Re: OT (slightly) What is the "best" processor for a new project? Howerd <howerdo@yahoo.co.uk> - 2013-05-27 22:24 -0700
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-27 22:59 -0700
Re: OT (slightly) What is the "best" processor for a new project? Howerd <howerdo@yahoo.co.uk> - 2013-05-29 00:01 -0700
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-29 00:12 -0700
Re: OT (slightly) What is the "best" processor for a new project? m.a.m.hendrix@tue.nl - 2013-05-29 01:46 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-29 12:54 -0400
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-29 11:05 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-29 15:36 -0400
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-30 00:07 -0700
Re: OT (slightly) What is the "best" processor for a new project? Howerd <howerdo@yahoo.co.uk> - 2013-05-30 00:43 -0700
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-30 01:22 -0700
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-30 07:49 -0500
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-30 07:43 -0700
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-30 10:50 -0500
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-30 10:18 -0700
Re: OT (slightly) What is the "best" processor for a new project? "Elizabeth D. Rather" <erather@forth.com> - 2013-05-30 08:08 -1000
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-31 00:03 -0700
Re: OT (slightly) What is the "best" processor for a new project? Elizabeth D Rather <erather@forth.com> - 2013-05-30 21:21 -1000
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-31 11:09 -0700
Re: OT (slightly) What is the "best" processor for a new project? "Elizabeth D. Rather" <erather@forth.com> - 2013-05-31 08:28 -1000
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-06-01 16:03 -0700
Re: OT (slightly) What is the "best" processor for a new project? Hugh Aguilar <hughaguilar96@yahoo.com> - 2013-06-02 00:05 -0700
Re: OT (slightly) What is the "best" processor for a new project? Elizabeth D Rather <erather@forth.com> - 2013-06-03 21:21 -1000
Re: OT (slightly) What is the "best" processor for a new project? Mark Wills <markrobertwills@yahoo.co.uk> - 2013-05-31 00:37 -0700
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-31 01:14 -0700
Re: OT (slightly) What is the "best" processor for a new project? stephenXXX@mpeforth.com (Stephen Pelc) - 2013-05-31 09:50 +0000
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-31 09:35 -0700
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-31 11:47 -0500
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-31 10:09 -0700
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-31 12:12 -0500
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-31 10:22 -0700
Re: OT (slightly) What is the "best" processor for a new project? "Elizabeth D. Rather" <erather@forth.com> - 2013-05-31 10:25 -1000
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-06-01 12:11 -0700
Re: OT (slightly) What is the "best" processor for a new project? "Elizabeth D. Rather" <erather@forth.com> - 2013-06-01 16:12 -1000
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-06-01 21:43 -0700
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-31 06:41 -0500
Re: OT (slightly) What is the "best" processor for a new project? anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-05-31 12:03 +0000
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-31 10:01 -0700
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-31 12:06 -0500
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-05-31 00:23 +0200
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-31 01:05 -0700
Re: OT (slightly) What is the "best" processor for a new project? albert@spenarnc.xs4all.nl (Albert van der Horst) - 2013-05-31 11:23 +0000
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-31 11:15 -0700
Re: OT (slightly) What is the "best" processor for a new project? Gerry Jackson <gerry@jackson9000.fsnet.co.uk> - 2013-05-31 18:37 +0100
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-31 10:43 -0700
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-05-31 23:21 +0200
Re: OT (slightly) What is the "best" processor for a new project? mhx@iae.nl - 2013-05-31 15:07 -0700
Re: OT (slightly) What is the "best" processor for a new project? Lars Brinkhoff <lars.spam@nocrew.org> - 2013-06-01 08:55 +0200
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-06-01 00:41 -0700
Re: OT (slightly) What is the "best" processor for a new project? anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-06-01 13:52 +0000
Re: OT (slightly) What is the "best" processor for a new project? anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-06-03 16:07 +0000
Re: OT (slightly) What is the "best" processor for a new project? "Elizabeth D. Rather" <erather@forth.com> - 2013-06-03 07:56 -1000
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-06-03 11:20 -0700
Re: OT (slightly) What is the "best" processor for a new project? anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-06-04 12:30 +0000
Re: OT (slightly) What is the 'best' processor for a new project? mhx@iae.nl (Marcel Hendrix) - 2013-06-04 21:47 +0200
Re: OT (slightly) What is the 'best' processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-06-05 00:58 +0200
Re: OT (slightly) What is the 'best' processor for a new project? mhx@iae.nl (Marcel Hendrix) - 2013-06-05 21:09 +0200
Re: OT (slightly) What is the 'best' processor for a new project? anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-06-05 15:50 +0000
Re: OT (slightly) What is the 'best' processor for a new project? mhx@iae.nl (Marcel Hendrix) - 2013-06-05 22:06 +0200
Re: OT (slightly) What is the 'best' processor for a new project? Alex McDonald <blog@rivadpm.com> - 2013-06-05 15:26 -0700
Re: OT (slightly) What is the 'best' processor for a new project? anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-06-12 16:41 +0000
Re: OT (slightly) What is the 'best' processor for a new project? Hugh Aguilar <hughaguilar96@yahoo.com> - 2013-06-12 16:46 -0700
Re: OT (slightly) What is the "best" processor for a new project? Lars Brinkhoff <lars.spam@nocrew.org> - 2013-06-04 16:06 +0200
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-06-01 02:20 -0500
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-06-01 17:32 +0200
Re: OT (slightly) What is the "best" processor for a new project? albert@spenarnc.xs4all.nl (Albert van der Horst) - 2013-06-01 19:26 +0000
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-06-02 01:13 +0200
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-06-01 00:39 -0700
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-06-01 18:05 +0200
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-06-02 00:45 -0700
Re: OT (slightly) What is the "best" processor for a new project? "Elizabeth D. Rather" <erather@forth.com> - 2013-06-02 08:34 -1000
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-06-03 01:57 +0200
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-06-03 19:37 -0700
Re: OT (slightly) What is the "best" processor for a new project? "Elizabeth D. Rather" <erather@forth.com> - 2013-06-03 17:37 -1000
Re: OT (slightly) What is the "best" processor for a new project? Lars Brinkhoff <lars.spam@nocrew.org> - 2013-06-04 08:03 +0200
Re: OT (slightly) What is the "best" processor for a new project? Elizabeth D Rather <erather@forth.com> - 2013-06-03 21:22 -1000
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-06-04 01:18 -0700
Re: OT (slightly) What is the "best" processor for a new project? "Elizabeth D. Rather" <erather@forth.com> - 2013-06-04 08:41 -1000
Re: OT (slightly) What is the "best" processor for a new project? Lars Brinkhoff <lars.spam@nocrew.org> - 2013-06-04 10:46 +0200
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-06-04 05:43 -0500
Re: OT (slightly) What is the "best" processor for a new project? "Elizabeth D. Rather" <erather@forth.com> - 2013-06-04 08:49 -1000
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-06-05 00:48 +0200
Re: OT (slightly) What is the "best" processor for a new project? anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-05-31 09:27 +0000
Re: OT (slightly) What is the "best" processor for a new project? albert@spenarnc.xs4all.nl (Albert van der Horst) - 2013-05-31 11:27 +0000
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-31 06:16 -0500
Re: OT (slightly) What is the "best" processor for a new project? albert@spenarnc.xs4all.nl (Albert van der Horst) - 2013-05-31 11:36 +0000
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-31 09:52 -0700
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-31 12:10 -0500
Re: OT (slightly) What is the "best" processor for a new project? "Elizabeth D. Rather" <erather@forth.com> - 2013-05-31 10:30 -1000
Re: OT (slightly) What is the "best" processor for a new project? Bernd Paysan <bernd.paysan@gmx.de> - 2013-06-01 00:06 +0200
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-06-04 10:07 -0400
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-06-01 16:01 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-30 13:20 -0400
Re: OT (slightly) What is the "best" processor for a new project? Howerd <howerdo@yahoo.co.uk> - 2013-05-30 09:32 -0700
Re: OT (slightly) What is the "best" processor for a new project? Howerd <howerdo@yahoo.co.uk> - 2013-05-30 09:30 -0700
Re: OT (slightly) What is the "best" processor for a new project? Brad Eckert <hwfwguy@gmail.com> - 2013-05-31 09:38 -0700
Re: OT (slightly) What is the "best" processor for a new project? Howerd <howerdo@yahoo.co.uk> - 2013-06-01 01:40 -0700
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-06-01 22:50 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-30 13:11 -0400
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-30 13:08 -0400
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-06-01 16:24 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-06-04 10:49 -0400
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-28 10:54 -0400
Re: OT (slightly) What is the "best" processor for a new project? anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-05-28 15:27 +0000
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-28 09:31 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-28 19:08 -0400
Re: OT (slightly) What is the "best" processor for a new project? albert@spenarnc.xs4all.nl (Albert van der Horst) - 2013-05-29 03:51 +0000
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-29 13:04 -0400
Re: OT (slightly) What is the "best" processor for a new project? Pavel Klinkovsky <pavel.klinkovsky@gmail.com> - 2013-05-29 00:12 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-29 13:05 -0400
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-28 09:32 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-28 19:05 -0400
Re: OT (slightly) What is the "best" processor for a new project? Howerd <howerdo@yahoo.co.uk> - 2013-05-29 00:16 -0700
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-29 00:22 -0700
Re: OT (slightly) What is the "best" processor for a new project? Howerd <howerdo@yahoo.co.uk> - 2013-05-29 01:23 -0700
Re: OT (slightly) What is the "best" processor for a new project? stephenXXX@mpeforth.com (Stephen Pelc) - 2013-05-29 09:35 +0000
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-29 05:37 -0500
Re: OT (slightly) What is the "best" processor for a new project? Howerd <howerdo@yahoo.co.uk> - 2013-05-29 04:53 -0700
Re: OT (slightly) What is the "best" processor for a new project? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-05-29 08:39 -0500
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-29 15:25 -0400
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-06-01 23:05 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-06-04 10:57 -0400
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-29 15:16 -0400
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-29 13:15 -0400
Re: OT (slightly) What is the "best" processor for a new project? daveyrotten <danw8804@gmail.com> - 2013-05-28 09:21 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-28 19:10 -0400
Re: OT (slightly) What is the "best" processor for a new project? daveyrotten <danw8804@gmail.com> - 2013-05-28 18:40 -0700
Re: OT (slightly) What is the "best" processor for a new project? Paul Rubin <no.email@nospam.invalid> - 2013-05-28 19:33 -0700
Re: OT (slightly) What is the "best" processor for a new project? daveyrotten <danw8804@gmail.com> - 2013-05-29 04:31 -0700
Re: OT (slightly) What is the "best" processor for a new project? rickman <gnuarm@gmail.com> - 2013-05-29 16:12 -0400
Re: OT (slightly) What is the "best" processor for a new project? the_gavino_himself <visphatesjava@gmail.com> - 2013-06-11 16:29 -0700
csiph-web