|
Message
From: cvs at opencores.org<cvs@o...>
Date: Wed Jan 24 20:34:17 CET 2007
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/07/01 24:20:34 Modified: jop/java/target/src/app/tal Lift.java Log: local eth and ip Revision Changes Path 1.2 jop/java/target/src/app/tal/Lift.java http://www.opencores.org/cvsweb.shtml/jop/java/target/src/app/tal/Lift.java.diff?r1=1.1&r2=1.2 (In the diff below, changes in quantity of whitespace are not shown.) Index: Lift.java =================================================================== RCS file: /cvsroot/martin/jop/java/target/src/app/tal/Lift.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- Lift.java 11 May 2005 17:37:20 -0000 1.1 +++ Lift.java 24 Jan 2007 19:34:17 -0000 1.2 @@ -84,7 +84,9 @@ // // don't use CS8900 when simulating on PC if (!simpc) { - 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); // use instead Slip for PC simulation // LinkLayer ipLink = Slip.init(Const.IO_UART_BG_MODEM_BASE, // (192<<24) + (168<<16) + (1<<8) + 2);
|
 |