()
| 1122 | } |
| 1123 | |
| 1124 | public byte pop() { |
| 1125 | STACK = (STACK + 1) & 0x0FF; |
| 1126 | return getMemory().read(0x0100 + STACK, TYPE.READ_DATA, true, false); |
| 1127 | } |
| 1128 | |
| 1129 | private byte getStatus() { |
| 1130 | return (byte) ((N ? 0x080 : 0) |
no test coverage detected