Handbook
Glossary
next-byte ( cpu -- byte )
Vocabulary
cpu
.
8080
.
emulator
Inputs
cpu
an
object
Outputs
byte
an
object
Definition
USING:
accessors
combinators
math
;
IN:
cpu.8080.emulator
:
next-byte
( cpu -- byte )
{
[
pc>>
]
[
read-byte
]
[
pc>>
1
+
]
[
pc<<
]
}
cleave
;