retroforth/vm/nga-python/Memory.py
crc f212b7fcea nga-python: start adding files from the rework towards a class based implementation
FossilOrigin-Name: b56fcd9e7f5f44c0f0572aa19dc423a94bbb849d593cc07621af063acb51e124
2020-11-18 20:20:04 +00:00

10 lines
145 B
Python

class Memory():
def __init__(self):
pass
def store(value, address):
pass
def fetch(address):
pass