diff options
author | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 02:29:14 +0100 |
---|---|---|
committer | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 02:29:14 +0100 |
commit | 687f56226dc8a024ef560ee4b390a630819f437c (patch) | |
tree | 36fb00aaae469508ea9940bd581effb6e985bf6b /bin | |
parent | 2b62fa482a7553c07e7664b736a646af35c1f72d (diff) |
Removed Memory module's MEM_BLOCK_START flag.
[#28] This flag served no purpose except to facilitate rendering.
However, performance has a higher priority so I've eliminated this
feature. Block start rendering can still be implemented via other
methods.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/printer.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/printer.py b/bin/printer.py index e29f4f8..14aea6f 100644 --- a/bin/printer.py +++ b/bin/printer.py @@ -512,8 +512,7 @@ class Printer: ("MEMORY", [ ("e", "order", self.__sim.lib.sal_mem_get_order), ("e", "size", self.__sim.lib.sal_mem_get_size), - ("e", "blocks", self.__sim.lib.sal_mem_get_block_start_count), - ("e", "allocated", self.__sim.lib.sal_mem_get_allocated_count), + ("e", "allocated", self.__sim.lib.sal_mem_get_allocated), ("s", ""), ("h", "INSTRUCTIONS"), ] + inst_widget), |