Dataflow Software Stack
032db78
Master Thesis of Mathijs Saey at the VUB
|
The Instruction memory stores all of the instructions in the program. More...
Inherits object.
Public Member Functions | |
def | __init__ |
Initialize the memory. More... | |
def | add |
Add an instruction to the memory. More... | |
def | get |
Get an instruction from memory. More... | |
Public Attributes | |
memory | |
The Instruction memory stores all of the instructions in the program.
An instruction memory is divided into chunks. each of these chunks stores instructions with certain properties. The exact properties are determined by the outside world.
def core.memory.InstructionMemory.__init__ | ( | self, | |
chunks | |||
) |
Initialize the memory.
chunks | The amount of chunks this memory contains. |
def core.memory.InstructionMemory.add | ( | self, | |
inst | |||
) |
Add an instruction to the memory.
def core.memory.InstructionMemory.get | ( | self, | |
key | |||
) |
Get an instruction from memory.
core.memory.InstructionMemory.memory |