Skip to content

Commit

Permalink
add hello world and doc
Browse files Browse the repository at this point in the history
  • Loading branch information
kentaroy47 committed Nov 18, 2021
1 parent 5810d58 commit 30f2cfc
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,21 @@ VerilogHDLの扱い、シミュレーション

https://www.acri.c.titech.ac.jp/wordpress/archives/12916

https://sites.google.com/site/playsystemverilog/

の手順に従い、Vivadoをインストールします。

Vivado Labをインストールしてください。

![image-20211117205911471](C:\Users\kyosh\AppData\Roaming\Typora\typora-user-images\image-20211117205911471.png)

* (インストールできたら)Vivado動作テスト

* 教科書配布

### テキスト

本セミナーでは**ディジタル回路設計とコンピュータアーキテクチャ[ARM版]**をベースに勉強します。
本セミナーでは**ディジタル回路設計とコンピュータアーキテクチャ[ARM版]**をベースに勉強します。この本はCPUの作り方まで勉強できる上、比較的わかりやすく書かれています。

3章までは必修のディジタル・アナログ回路の復習ですがデジタル回路は後半なのでまだ履修していないかもですね。

Expand Down
Binary file added designflow2020.pdf
Binary file not shown.
9 changes: 9 additions & 0 deletions helloworld/hello.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module test;

initial begin

$display("Hello World!!");

end

endmodule

0 comments on commit 30f2cfc

Please sign in to comment.