Source code for eight_bit_computer.operations.and_op

"""
AND Operation
"""

from . import simple_alu_op_base

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

_NAME = "AND"


[docs]def generate_microcode_templates(): """ Generate microcode for all the AND instructions. Returns: list(DataTemplate): DataTemplates for all the AND instructions. """ return simple_alu_op_base.generate_microcode_templates( ALU_OPERATIONS["AND"], ALU_CONTROL_FLAGS["A_AND_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 AND 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["AND"] )