try {
Dock dispatchFrom = fpga.debugShip.getDock("in");
long out = 0;
- out = PACKET_DATA.setval(out, word);
- out = PACKET_TOKEN.setval(out, token ? 1 : 0);
- out = PACKET_SIGNAL.setval(out, 0);
- out = PACKET_DEST.setval(out, ((FpgaPath)dispatchFrom.getPath(d, null)).toLong());
+ out = fpga.PACKET_DATA.setval(out, word);
+ out = fpga.PACKET_TOKEN.setval(out, token ? 1 : 0);
+ out = fpga.PACKET_SIGNAL.setval(out, 0);
+ out = fpga.PACKET_DEST.setval(out, ((FpgaPath)dispatchFrom.getPath(d, null)).toLong());
synchronized(this) {
for(int i=7; i>=0; i--)
dos.write(BitManipulations.getIntField(i*8+7, i*8, out));