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

Method pop

src/main/java/jace/apple2e/MOS65C02.java:1124–1127  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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)

Callers 15

popWordMethod · 0.95
returnFromInterruptMethod · 0.95
codemirror.jsFile · 0.80
makeChangeFromHistoryFunction · 0.80
deleteNearSelectionFunction · 0.80
clearSelectionEventsFunction · 0.80
lastChangeEventFunction · 0.80
tokenFunctionFunction · 0.80
updateFunction · 0.80
jumpBackFunction · 0.80
getCompletionsFunction · 0.80
nameCompletionFunction · 0.80

Calls 2

readMethod · 0.45
getMemoryMethod · 0.45

Tested by

no test coverage detected