960961962963964965966967968969970971972973974975976977978979980981982983984985986987
int b; a = popIntStack(); b = popIntStack(); if (b == 0) { throw new CPUException(); } pushIntStack(a / b); } break; case MOD: if (feeble[MOD]) { emulate(); } else { int a; int b; a = popIntStack(); b = popIntStack(); if (b == 0) { throw new CPUException(); } pushIntStack(a % b); } break;
254255256257258259260261
{ return inputPipe.read(); } catch (IOException e) { e.printStackTrace(); throw new CPUException(); } }