Source code for eight_bit_computer.operations.or_op

"""
OR Operation
"""

from . import simple_alu_op_base

from ..language_defs import (
    ALU_OPERATIONS,
    ALU_CONTROL_FLAGS,
    instruction_byte_from_bitdefs,
)

_NAME = "OR"


[docs]def generate_microcode_templates(): """ Generate microcode for all the OR instructions. Returns: list(DataTemplate): DataTemplates for all the OR instructions. """ return simple_alu_op_base.generate_microcode_templates( ALU_OPERATIONS["OR"], ALU_CONTROL_FLAGS["A_OR_B"], )
[docs]def parse_line(line): """ Parse a line of assembly code to create machine code byte templates. If a line is not identifiably a OR assembly line, return an empty list instead. Args: line (str): Assembly line to be parsed. Returns: list(dict): List of machine code byte template dictionaries or an empty list. """ return simple_alu_op_base.parse_line( line, _NAME, ALU_OPERATIONS["OR"] )