Search the web
Sign In
New User? Sign Up
java-processor · Java Processor
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 765 - 795 of 1784   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
765
Would JOP run on this? http://flash-plaice.wikispaces.com/ Trevor P.S. Pretty cool that the client is written in Java....
Trevor Harmon
vocaro2000
Offline Send Email
May 1, 2007
8:05 am
766
... Yes, that's just the newer version of the Xilinx Starter Kit. One has to attache a DDR memory controler to JOP. As I see the original Logic Analyzer was...
Martin Schoeberl
jopdesign
Offline Send Email
May 1, 2007
10:37 am
767
You mean a mixed LEON/JOP system where LEON does the C code and JOP runs Java. That could be a fun system. I started with an AHB interface for JOP to test the...
Martin Schoeberl
jopdesign
Offline Send Email
May 3, 2007
7:01 am
768
That does sound fun. I'm definately interested in doing this (and any useful pointers as to what steps need achieving via email would be great). Or is it just...
Christopher P. Bridges
cpbridges_ssc
Offline Send Email
May 3, 2007
10:23 am
769
Chris, ... The AMBA interface is the main hardware related change in JOP. Attaching two AMBA masters to the grlib arbiter should be straight forward. The next...
Martin Schoeberl
jopdesign
Offline Send Email
May 3, 2007
12:01 pm
770
Hi Martin, That part seems straight forward enough (and very interesting!), but how would you run an operating system on top of that to switch between the...
Christopher P. Bridges
cpbridges_ssc
Offline Send Email
May 3, 2007
1:45 pm
771
... What do you mean by switch of the cores in RTEMS? I think both cores run parallel: C apps are scheduled by RTEMS on the LEON and the Java application runs...
Martin Schoeberl
jopdesign
Offline Send Email
May 3, 2007
2:17 pm
772
Hi everybody, I ported DES to run on JOP. The resulting version is based on the implementation found in http://www.herongyang.com/crypto/des_implJava.html ...
andreotti98
Offline Send Email
May 14, 2007
5:06 pm
773
Hello everybody, I just included a new description of a project called JopVga on the JopWiki Site: http://www.jopdesign.com/wiki/index.php?title=JopVga The...
christof_pitter
Offline Send Email
May 15, 2007
10:25 am
774
... I'm curious... What sort of changes did you need to make specifically for JOP? Was it difficult to port? Trevor...
Trevor Harmon
vocaro2000
Offline Send Email
May 15, 2007
11:26 pm
775
Two Students at TU Vienna (Alexander and Peter) have designed and built a very nice board to interface JOP with the LEGO Mindstorms system. Take a look at ...
Martin Schoeberl
jopdesign
Offline Send Email
May 17, 2007
7:46 pm
777
... Nice project. Perhaps someone with a Xilinx Starter Kit (the old one) can try to get this running. AFAIK you need following changes: * Get a Xilinx (or...
Martin Schoeberl
jopdesign
Offline Send Email
May 20, 2007
11:37 am
778
Hi,all My project is porting JOP to the Xinlinx Spartan-3A My changes are following: 1.Add a internal RAM ('cause S3A doesn't has SRAM) 2.modify the memory...
kyopc
Offline Send Email
May 25, 2007
2:55 pm
779
... Sorry for the delay . .. It was easy to port it. I just added some methods to the String class that were missing and replaced some call for data conversion...
andreotti98
Offline Send Email
May 26, 2007
2:15 am
780
... Can you say which methods where missing? Or provide a patch so I can integrate your changes in the JOP CVS. ... What do you mean by more performance? ...
Martin Schoeberl
jopdesign
Offline Send Email
May 26, 2007
8:03 am
781
... You will not have too muc fun with internal RAM only. From you numbers I gues you configured 2^12*4 Byte = 16 KB RAM. The footprint for a 'hello world' is...
Martin Schoeberl
jopdesign
Offline Send Email
May 26, 2007
9:52 am
782
... route ... Hello,Sir I didn't change the source code for any signal about "*rx*". And I have traced the source code. However,I have no idea what should I do...
kyopc
Offline Send Email
May 26, 2007
5:08 pm
783
... specifically ... I just remember substring, but there were one or two more. They are in a folder in the group in a String.java file. ... performance. ... I...
andreotti98
Offline Send Email
May 26, 2007
8:27 pm
784
... So you mean optimizing the DES code. I had a quick look at it some days ago and it is very non-optimized in my opinion. Too many method invocations for...
Martin Schoeberl
jopdesign
Offline Send Email
May 26, 2007
9:16 pm
785
Hi all, at the moment only a stop-the-world garbage collector is enabled for JOP. I'm currently testing a concurrent version of the GC. As this version of the...
Martin Schoeberl
jopdesign
Offline Send Email
May 28, 2007
1:24 pm
786
Hi,Sir There is no problem on Spartan-3A. It's OK! I make a stupid mistake. That is my Cygwin have no "gcc"!!! When I execute jopser, some VHDL code didn't...
kyopc
Offline Send Email
May 28, 2007
7:10 pm
787
Hi all JOP users, I just wanted to inform you that all projects have changed a little bit because the component sc_cnt was replaced by sc_sys. The change was...
christof_pitter
Offline Send Email
Jun 1, 2007
4:17 pm
788
====================================================================== CALL FOR PAPERS The 5th Workshop on Java Technologies for Real-Time and Embedded Systems...
Martin Schoeberl
jopdesign
Offline Send Email
Jun 4, 2007
2:36 pm
789
... Hey !! I was thinking on that too!!. I just took the easiest approach and made independent schedulers for each processor. But I think that the code in...
andreotti98
Offline Send Email
Jun 15, 2007
4:18 pm
790
... The changes in sc_sys are just for booting the CMP. A single 'run' bit that is set by CPU0 and read by CPUn. It has at the moment nothing to do with...
Martin Schoeberl
jopdesign
Offline Send Email
Jun 15, 2007
5:20 pm
791
... My implementation is as follows: 1)A owner_id variable on the object to store the id of the thread. 2)A count variable in the same place to know how many...
andreotti98
Offline Send Email
Jun 16, 2007
12:07 am
792
Hello, I am studying JOP and I like to try develop one application board (JOP) to communicating with the network. This application only get one information of...
poffo21
Offline Send Email
Jun 19, 2007
11:45 am
793
... Basically each board that contains a serial line can be used to perform networking with SLIP or PPP. However, keep in mind that the serial line is also...
Martin Schoeberl
jopdesign
Offline Send Email
Jun 19, 2007
12:05 pm
794
The Cyclone board are specific for Java (JOP)? What are the pre- requirements for use Java in these boards?? Regards. ... (JOP) ... one ... application....
poffo21
Offline Send Email
Jun 21, 2007
4:51 pm
795
No, it's not specific for JOP. I've run on it also: NIOS, LEON, and mlite (but mlite has some bugs). You should use JOP for Java on this board ;-) An...
Martin Schoeberl
jopdesign
Offline Send Email
Jun 21, 2007
5:49 pm
Messages 765 - 795 of 1784   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help