(boolean generateEvent, MOS65C02 cpu)
| 367 | int calculateAddress(MOS65C02 cpu); |
| 368 | |
| 369 | default int getValue(boolean generateEvent, MOS65C02 cpu) { |
| 370 | int address = calculateAddress(cpu); |
| 371 | return (address > -1) ? (0x0ff & cpu.getMemory().read(address, TYPE.READ_DATA, generateEvent, false)) : 0; |
| 372 | } |
no outgoing calls
no test coverage detected