2014年11月20日木曜日

開発環境

計算機プログラムの構造と解釈[第2版](ハロルド エイブルソン (著)、ジュリー サスマン (著)、ジェラルド・ジェイ サスマン (著)、Harold Abelson (原著)、Julie Sussman (原著)、Gerald Jay Sussman (原著)、和田 英一 (翻訳)、翔泳社、原書: Structure and Interpretation of Computer Programs (MIT Electrical Engineering and Computer Science)(SICP))の5(レジスタ計算機での計算)、5.1(レジスタ計算機の設計)、5.1.1(レジスタ計算機の記述言語)、問題 5.2を解いてみる。

その他参考書籍

問題 5.2

レジスタ計算機の言語(BBEdit, Emacs)

(controller
    (assign product (const 1))
    (assign counter (const 1))
  test-counter
    (test (op >) (reg counter) (reg n))
    (branch (label factorial done))
    (assign prouct (op *) (reg counter) (reg prouct))
    (assign counter (op +) (reg counter) (const 1))
    (goto (label test-a))
  factorial-done)

0 コメント:

コメントを投稿