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

Method processCommand

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

Source from the content-addressed store, hash-verified

537 }
538
539 @Override
540 public void processCommand(int address, int value, MODE addressMode, MOS65C02 cpu) {
541 if ((value & (1 << bit)) != 0) {
542 cpu.setProgramCounter(address);
543 cpu.setPageBoundaryApplied(true);
544 cpu.addWaitCycles(1);
545 }
546 }
547 }
548
549 private static class RMBCommand implements CommandProcessor {

Callers

nothing calls this directly

Calls 3

setProgramCounterMethod · 0.80
addWaitCyclesMethod · 0.80

Tested by

no test coverage detected