Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.arch.fpga > #4946
| Message-ID | <51CA3162.4090201@bitblocks.com> (permalink) |
|---|---|
| Date | 2013-06-25 17:10 -0700 |
| From | Bakul Shah <usenet@bitblocks.com> |
| Newsgroups | comp.arch.fpga |
| Subject | Re: New soft processor core paper publisher? |
| References | (12 earlier) <kqcajv$suf$1@dont-email.me> <Mtiyt.84187$e25.77431@fx34.am4> <9d155f58-8d70-4aaa-b904-8bec5ac66707@googlegroups.com> <51C9FC41.8030805@bitblocks.com> <kqd7g4$485$1@dont-email.me> |
| Organization | Sonic.Net |
On 6/25/13 4:06 PM, rickman wrote: > On 6/25/2013 4:23 PM, Bakul Shah wrote: >> This is not good enough in general. I gave some examples where threads >> have to read/write the same memory location. > > I didn't see any examples that were essential. You talked about two processes accessing the same > data. Why do you need to do that? Just have one process send the data to the other process so only > one updates the list. There by reducing things to single threading. >> I agree with you that if threads communicate just through fifos >> and there is exactly one reader and one writer there is no problem. >> The reader updates the read ptr & watches but doesn't update the >> write ptr. The writer updates the write ptr & watches but doesn't >> update the read ptr. You can use fifos like these to implement a >> mutex but this is a very expensive way to implement mutexes and >> doesn't scale. > > Doesn't scale? Can you explain? Scale to more than two threads. For that it may be better to use one of the other algorithms mentioned in my last article. Still pretty complicated and inefficient. >> Adding compare-and-swap or load-linked & store-conditional would >> make your processor more useful for parallel programming. I am not >> motivated enough to go through 4500+ lines of verilog to know how >> hard that is but you must already have some bus arbitration logic >> since all 8 threads can access memory. > > You don't understand even the most basic concept of how the device works. There is no arbitration > logic because there is only one processor that is time shared between 8 processes on a clock cycle > basis to match the 8 deep pipeline. In this case load-linked, store conditional may be possible? load-linked records the loaded address & thread id in a special register. If any other thread tries to *write* to the same address, a subsequent store-conditional fails & the next instn can test that. You could simplify this further at some loss of efficiency: fail the store if there is *any* store by any other thread!
Back to comp.arch.fpga | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
New soft processor core paper publisher? tammie.eric@gmail.com - 2013-06-12 14:17 -0700
Re: New soft processor core paper publisher? Nikolaos Kavvadias <nikolaos.kavvadias@gmail.com> - 2013-06-13 03:33 -0700
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-13 10:07 -0700
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-15 20:40 -0400
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-15 19:17 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-16 10:23 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-16 06:58 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-16 18:16 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-16 17:32 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-17 11:26 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-19 17:13 -0400
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-20 07:35 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-20 15:51 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-20 19:50 -0400
Re: New soft processor core paper publisher? "Elizabeth D. Rather" <erather@forth.com> - 2013-06-20 15:31 -1000
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-20 20:38 -0700
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-22 01:07 -0400
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-21 10:30 +0100
Re: New soft processor core paper publisher? David Brown <david@westcontrol.removethisbit.com> - 2013-06-21 13:18 +0200
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-21 15:25 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-21 21:44 -0700
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-22 01:26 -0400
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-22 09:36 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-22 09:26 -0700
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-22 09:36 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-22 17:56 +0100
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-22 18:17 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-22 14:08 -0400
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-22 13:11 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-22 21:22 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-22 14:11 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-22 22:57 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-22 23:44 -0400
Re: New soft processor core paper publisher? David Brown <david@westcontrol.removethisbit.com> - 2013-06-23 10:00 +0200
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-23 10:31 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-23 13:27 -0400
Re: New soft processor core paper publisher? Rob Doyle <radioengr@gmail.com> - 2013-06-23 10:34 -0700
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-23 13:46 -0400
Re: New soft processor core paper publisher? Rob Doyle <radioengr@gmail.com> - 2013-06-23 11:05 -0700
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-06-23 22:21 -0500
Re: New soft processor core paper publisher? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-06-24 04:49 +0000
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-06-24 07:31 -0500
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-22 16:37 -0400
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-22 14:21 -0700
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-22 14:32 -0700
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-22 23:47 -0400
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-23 04:34 -0700
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-23 13:24 -0400
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-23 13:52 -0700
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-23 18:30 -0400
Re: New soft processor core paper publisher? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-06-24 00:15 +0000
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-23 22:06 -0400
Re: New soft processor core paper publisher? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-06-24 03:18 +0000
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-23 23:42 -0400
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-23 19:54 -0700
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-24 00:07 -0400
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-24 12:25 -0700
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-25 11:01 -0400
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-22 23:45 -0400
Re: New soft processor core paper publisher? David Brown <david@westcontrol.removethisbit.com> - 2013-06-23 09:54 +0200
Re: New soft processor core paper publisher? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-06-23 04:04 -0500
Re: New soft processor core paper publisher? Paul Rubin <no.email@nospam.invalid> - 2013-06-23 02:09 -0700
Re: New soft processor core paper publisher? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-06-23 12:09 -0500
Re: New soft processor core paper publisher? Paul Rubin <no.email@nospam.invalid> - 2013-06-26 01:41 -0700
Re: New soft processor core paper publisher? Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-06-26 04:00 -0500
Re: New soft processor core paper publisher? Paul Rubin <no.email@nospam.invalid> - 2013-06-26 02:13 -0700
Re: New soft processor core paper publisher? Theo Markettos <theom+news@chiark.greenend.org.uk> - 2013-06-28 00:22 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-23 13:18 -0400
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-22 01:23 -0400
Re: New soft processor core paper publisher? David Brown <david.brown@removethis.hesbynett.no> - 2013-06-22 17:21 +0200
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-22 12:18 -0400
Re: New soft processor core paper publisher? David Brown <david@westcontrol.removethisbit.com> - 2013-06-23 10:38 +0200
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-23 13:45 -0400
Re: New soft processor core paper publisher? David Brown <david.brown@removethis.hesbynett.no> - 2013-06-23 22:51 +0200
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-22 18:27 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-22 01:20 -0400
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-22 09:34 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-22 10:17 -0400
Re: New soft processor core paper publisher? chrisabele <ccabele@yahoo.com> - 2013-06-22 10:19 -0400
Re: New soft processor core paper publisher? "jt_eaton" <84408@embeddedrelated> - 2013-06-13 11:41 -0500
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-13 10:23 -0700
Re: New soft processor core paper publisher? Theo Markettos <theom+news@chiark.greenend.org.uk> - 2013-06-14 01:44 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-14 08:43 -0700
Re: New soft processor core paper publisher? Theo Markettos <theom+news@chiark.greenend.org.uk> - 2013-06-14 22:29 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-14 15:49 -0700
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-15 12:45 -0700
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-23 14:10 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-23 23:43 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-23 18:23 -0700
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-23 21:57 -0400
Re: New soft processor core paper publisher? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-06-24 02:07 +0000
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-24 08:24 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-24 05:03 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-24 13:30 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-24 06:28 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-24 14:47 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-24 08:57 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-24 17:13 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-24 12:35 -0400
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-24 17:56 +0100
Re: New soft processor core paper publisher? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-06-24 18:01 +0000
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-24 19:45 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-24 12:47 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-24 21:02 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-25 10:53 -0400
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-25 16:14 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-25 11:18 -0700
Re: New soft processor core paper publisher? Bakul Shah <usenet@bitblocks.com> - 2013-06-25 13:23 -0700
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-25 19:06 -0400
Re: New soft processor core paper publisher? Bakul Shah <usenet@bitblocks.com> - 2013-06-25 17:10 -0700
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-25 20:28 -0400
Re: New soft processor core paper publisher? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-06-25 17:14 +0000
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-25 14:06 -0400
Re: New soft processor core paper publisher? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-06-25 19:02 +0000
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-25 19:12 -0400
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-25 11:07 -0700
Re: New soft processor core paper publisher? Bakul Shah <usenet@bitblocks.com> - 2013-06-25 13:42 -0700
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-06-24 07:50 -0500
Re: New soft processor core paper publisher? Bakul Shah <usenet@bitblocks.com> - 2013-06-24 15:03 -0700
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-24 15:23 -0700
Re: New soft processor core paper publisher? Bakul Shah <usenet@bitblocks.com> - 2013-06-24 16:00 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-25 00:17 +0100
Re: New soft processor core paper publisher? David Brown <david@westcontrol.removethisbit.com> - 2013-06-25 11:12 +0200
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-25 15:54 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-25 11:11 -0400
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-25 16:23 +0100
Re: New soft processor core paper publisher? "RCIngham" <2161@embeddedrelated> - 2013-06-28 04:09 -0500
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-28 10:33 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-28 10:52 -0400
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-28 17:23 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-28 15:06 -0400
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-28 22:11 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-28 21:02 -0400
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-28 19:15 -0700
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-06-28 21:44 -0500
Re: New soft processor core paper publisher? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-06-29 02:56 +0000
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-06-28 22:57 -0500
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-29 10:35 +0100
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-29 10:34 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-28 23:55 -0400
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-29 10:39 +0100
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-06-29 11:50 -0500
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-30 02:21 -0400
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-06-30 11:03 -0500
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-30 19:10 -0400
Re: New soft processor core paper publisher? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-07-01 06:51 +0000
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-07-01 03:07 -0400
Re: New soft processor core paper publisher? David Brown <david@westcontrol.removethisbit.com> - 2013-07-01 13:09 +0200
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-07-01 08:01 -0500
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-07-01 17:30 -0400
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-07-01 17:26 -0400
Re: New soft processor core paper publisher? David Brown <david.brown@removethis.hesbynett.no> - 2013-07-02 00:13 +0200
Re: New soft processor core paper publisher? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-07-01 17:46 +0000
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-07-01 17:37 -0400
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-07-01 20:23 -0700
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-07-01 07:59 -0500
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-07-01 17:59 -0400
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-07-01 20:26 -0500
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-07-13 21:52 -0400
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-07-14 09:33 -0500
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-07-14 11:26 -0400
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-07-14 11:37 -0500
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-07-14 14:03 -0400
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-07-15 17:57 -0500
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-07-15 21:19 -0400
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-07-15 22:27 -0500
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-30 21:45 -0700
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-29 06:10 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-29 14:56 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-29 08:03 -0700
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-30 02:25 -0400
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-30 10:01 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-30 19:17 -0400
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-06-29 11:53 -0500
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-29 20:38 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-30 10:03 +0100
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-29 10:31 +0100
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-06-29 11:58 -0500
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-29 19:32 +0100
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-06-30 10:36 -0500
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-07-12 17:06 +0100
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-29 10:14 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-30 19:32 -0400
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-07-12 17:19 +0100
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-07-12 14:23 -0400
Re: New soft processor core paper publisher? tammie_eric@verizon.net - 2013-07-12 16:35 -0700
Re: New soft processor core paper publisher? Bakul Shah <usenet@bitblocks.com> - 2013-06-28 12:55 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-28 22:04 +0100
Re: New soft processor core paper publisher? Bakul Shah <usenet@bitblocks.com> - 2013-06-28 14:22 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-28 22:39 +0100
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-06-28 21:55 -0500
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-29 11:06 +0100
Re: New soft processor core paper publisher? Les Cargill <lcargill99@comcast.com> - 2013-06-29 12:13 -0500
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-25 11:13 -0400
Re: New soft processor core paper publisher? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-06-24 22:54 +0000
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-25 21:26 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-25 15:40 -0700
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-26 00:07 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-25 16:18 -0700
Re: New soft processor core paper publisher? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-06-26 00:02 +0000
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-25 20:06 -0400
Re: New soft processor core paper publisher? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-06-25 23:55 +0000
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-25 20:16 -0400
Re: New soft processor core paper publisher? Tom Gardner <spamjunk@blueyonder.co.uk> - 2013-06-26 10:32 +0100
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-24 14:30 -0700
Re: New soft processor core paper publisher? rickman <gnuarm@gmail.com> - 2013-06-25 11:16 -0400
Re: New soft processor core paper publisher? thomas.entner99@gmail.com - 2013-06-25 14:56 -0700
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-25 16:07 -0700
Re: New soft processor core paper publisher? thomas.entner99@gmail.com - 2013-06-25 16:39 -0700
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-26 06:24 -0700
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-26 10:52 -0700
Re: New soft processor core paper publisher? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-06-26 18:07 +0000
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-26 13:06 -0700
Re: New soft processor core paper publisher? thomas.entner99@gmail.com - 2013-06-26 14:44 -0700
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-27 08:31 -0700
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-28 06:59 -0700
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2013-06-25 16:30 -0700
Re: New soft processor core paper publisher? thomas.entner99@gmail.com - 2013-06-25 16:57 -0700
Re: New soft processor core paper publisher? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-06-26 00:14 +0000
Re: New soft processor core paper publisher? Eric Wallin <tammie.eric@gmail.com> - 2014-03-05 12:05 -0800
csiph-web