Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/buhe/bugu-computer
💻 Build own computer by fpga.
https://github.com/buhe/bugu-computer
fpga hdl nand2tetris own tutorials verilog
Last synced: 25 days ago
JSON representation
💻 Build own computer by fpga.
- Host: GitHub
- URL: https://github.com/buhe/bugu-computer
- Owner: buhe
- License: gpl-3.0
- Created: 2022-05-30T06:36:42.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-06-09T04:56:19.000Z (over 2 years ago)
- Last Synced: 2024-08-03T23:24:01.424Z (3 months ago)
- Topics: fpga, hdl, nand2tetris, own, tutorials, verilog
- Language: Verilog
- Homepage:
- Size: 319 KB
- Stars: 24
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- build-your-own-x-zh - **Verilog**: 从与或非门开始构建一个计算机的教程(写给软件工程师)
README
## bugu computer
![Untitled (3)](https://tva1.sinaimg.cn/large/008i3skNgy1gyomf2sm6zj30pm0be74x.jpg)
从与或非门开始构建一个计算机的教程(写给软件工程师)
作为一个软件工程师一定想过自己构建计算机,自己构建计算机是不是要连电路呀?得益于科技的发展,现在使用 verilog + Fpga 就可以了。本教程采用 verilog + Fpga 来从头构建一个最简单的计算机。
指令集采用 nand2tetris 的 Hack 。目标是运行如下汇编,不过也可以运行其他汇编因为是通用计算机。
```asm
// led.asm
// execute an infinite loop to
// read the button state and write the result(LOOP)
@8193 //read BUT
D=M@8192 //write LED
M=D@LOOP
0;JMP
```- [00 准备](00/README.md)
- [01 布尔逻辑](01/README.md)
- [02 算术(ALU)](02/README.md)
- [03 时序电路(存储)](03/README.md)
- [04 组装](04/README.md)参考
- https://gitlab.com/x653/nand2tetris-fpga
- https://www.nand2tetris.org/