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

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

Chapter 7 まずは簡単な単項演算子だけを実装する。 class Code_Writer: def __init__(self, file_path): self.file = open(file_path, "w") def write_arithmetic(self, command): # まず最後尾値をDレジスタに取り出して、 self.__decrement_pointer("SP")…