if (box_in1.dataReadyForShip() &&
box_in2.dataReadyForShip() &&
box_inOp.dataReadyForShip() &&
- box_out.readyForItemFromShip()) {
+ box_out.readyForDataFromShip()) {
long a = box_in1.removeDataForShip();
long b = box_in2.removeDataForShip();
long op = box_inOp.removeDataForShip();
== Fleeterpreter ====================================================
private Packet selector;
public void service() {
- if (!box_out1.readyForItemFromShip() || !box_out2.readyForItemFromShip()) return;
+ if (!box_out1.readyForDataFromShip() || !box_out2.readyForDataFromShip()) return;
if (selector == null && !box_in.dataReadyForShip()) return;
if (selector == null) selector = box_in.removePacketForShip();
String port = selector.destination.getDestinationName();
long size = val & 0x3f;
dispatch((int)addr, (int)size);
}
- if (box_inAddr.dataReadyForShip() && box_out.readyForItemFromShip()) {
+ if (box_inAddr.dataReadyForShip() && box_out.readyForDataFromShip()) {
Packet packet = box_inAddr.peekPacketForShip();
if (packet.destination.getDestinationName().equals("read")) {
box_out.addDataFromShip(readMem((int)box_inAddr.removeDataForShip()));