MCPcopy Create free account
hub / github.com/badvision/jace / processCommand

Method processCommand

src/main/java/jace/apple2e/MOS65C02.java:522–528  ·  view source on GitHub ↗
(int address, int value, MODE addressMode, MOS65C02 cpu)

Source from the content-addressed store, hash-verified

520 }
521
522 @Override
523 public void processCommand(int address, int value, MODE addressMode, MOS65C02 cpu) {
524 if ((value & (1 << bit)) == 0) {
525 cpu.setProgramCounter(address);
526 cpu.addWaitCycles(cpu.pageBoundaryPenalty ? 2 : 1);
527 }
528 }
529 }
530
531 private static class BBSCommand implements CommandProcessor {

Callers

nothing calls this directly

Calls 2

setProgramCounterMethod · 0.80
addWaitCyclesMethod · 0.80

Tested by

no test coverage detected