2023-07-06から1日間の記事一覧

VMトランスレーター / Code_Writerを作る / 比較演算子

Chapter 7 今度は比較演算子。 class Code_Writer: def __init__(self, file_path): self.file = open(file_path, "w") self.label_count = 0 self.calcs = { "neg":"M=-D", "not":"M=!D", "add":"M=D+M", "sub":"M=M-D", "and":"M=D&M", "or":"M=D|M",} sel…

VMトランスレーター / Code_Writerを作る / 和、差、論理積、論理和

Chapter 7 今度は和、差、論理積、論理和を追加する。 class Code_Writer: def __init__(self, file_path): self.file = open(file_path, "w") self.calcs = { "neg": "M=-D", "not": "M=!D", "add": "M=D+M", "sub": "M=M-D", "and": "M=D&M", "or": "M=D|M…