Handbook
Glossary
write-byte ( value addr cpu -- )
Vocabulary
cpu
.
8080
.
emulator
Inputs
value
an
object
addr
an
object
cpu
an
object
Outputs
None
Definition
USING:
accessors
kernel
math
sequences
;
IN:
cpu.8080.emulator
:
write-byte
( value addr cpu -- )
over
dup
8192
<
swap
65535
>
or
[
3drop
]
[
3dup
ram>>
set-nth
update-video
]
if
;