|
Message
From: cvs at opencores.org<cvs@o...>
Date: Wed Jan 24 20:57:09 CET 2007
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/07/01 24:20:57 Modified: jop/java/target/src/app/sms Sms.java Log: use local eth and ip Revision Changes Path 1.4 jop/java/target/src/app/sms/Sms.java http://www.opencores.org/cvsweb.shtml/jop/java/target/src/app/sms/Sms.java.diff?r1=1.3&r2=1.4 (In the diff below, changes in quantity of whitespace are not shown.) Index: Sms.java =================================================================== RCS file: /cvsroot/martin/jop/java/target/src/app/sms/Sms.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -b -r1.3 -r1.4 --- Sms.java 13 Jan 2006 01:07:13 -0000 1.3 +++ Sms.java 24 Jan 2007 19:57:09 -0000 1.4 @@ -379,7 +379,9 @@ // net = Net.init(); // don't use CS8900 when simulating on PC or for BG263 - ipLink = CS8900.init(Net.eth, Net.ip); + int[] eth = {0x00, 0xe0, 0x98, 0x33, 0xb0, 0xf8}; + int ip = (192<<24) + (168<<16) + (0<<8) + 123; + ipLink = CS8900.init(eth, ip); // // start device driver threads
|
 |