1 / 22

第 2 回放送授業

第 2 回放送授業. 3 プログラム. 3.1 機械語プログラム. 制御部. データ処理部. メモリー. ディスプレー. キーボード. 機械語. 0000 0000 0001 0010 意味 : ADD 0, 1, 2 1110 0000 0000 0001 0000 0000 0000 0011 意味 : LD 1, 0x0011. 機械語プログラム. 一連の作業を行うために機械語の命令コードを並べたもの. 3.2 アセンブラプログラム. アセンブラ言語 / プログラム. 3.3 高水準プログラム.

thais
Download Presentation

第 2 回放送授業

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 第2回放送授業

  2. 3 プログラム

  3. 3.1 機械語プログラム

  4. 制御部 データ処理部 メモリー ディスプレー キーボード

  5. 機械語 • 0000000000010010意味: ADD 0, 1, 2 • 1110 0000 000000010000 0000 0000 0011意味: LD 1, 0x0011

  6. 機械語プログラム • 一連の作業を行うために機械語の命令コードを並べたもの

  7. 3.2 アセンブラプログラム

  8. アセンブラ言語/プログラム

  9. 3.3 高水準プログラム

  10. C, C++, Java, FORTRAN, BasicPerl, Ruby, … • Compiler, Interpreter

  11. main(){ int x, y, z; x = 4; y = 5; z = x + y; print z; }

  12. 3.4 応用プログラム

  13. 応用プログラムの例 • Text editor, ワードプロセッサ • 表計算ソフト • プレゼンテーションソフト • コンパイラなど • マルチメディアソフトウェア • データベース • Web ブラウザ

  14. 3章のまとめ • 機械語/機械語プログラム • アセンブラ言語/アセンブラプログラム • 高水準プログラム(言語) • 応用プログラム

  15. 4 制御構造と構造化プログラミング

  16. 4.1 ジャンプ命令

  17. ジャンプ命令プログラムカウンタ • 無条件ジャンプ/条件ジャンプJP, JPZ, JPN, JPC, JPOJPZは論理判定でも使われる • 制御構造分岐、ループ

  18. 4.2 構造化プログラミング

  19. スパゲティプログラム • 構造化プログラミング

More Related