Pong game on Altera FPGA as exercise in Hardware-/Software-Codesign
subDesTagesMitExtraKaese 2ea0ecf53d Merge branch 'master' of ssh://gitlab.justprojects.de:4724/hochschule/de2-115-fpga-pong | 3 년 전 | |
---|---|---|
images | 3 년 전 | |
nios2_uc | 3 년 전 | |
output_files | 3 년 전 | |
software | 3 년 전 | |
.gitignore | 3 년 전 | |
README.md | 3 년 전 | |
myfirst_niosii.qpf | 3 년 전 | |
myfirst_niosii.qsf | 3 년 전 | |
myfirst_niosii.vhd | 3 년 전 | |
nios2_uc.qsys | 3 년 전 | |
nios2_uc.sopcinfo | 3 년 전 | |
output_file.map | 3 년 전 |
This is a Pong game on an Altera FPGA as an exercise in Hardware-/Software-Codesign.
The video below shows it in action, running on an university-made extension board.
.
├── myfirst_niosii.vhd
├── nios2_uc
│ ├── nios2_uc.bsf
│ └── synthesis
│ └── nios2_uc.vhd
├── README.md
└── software
├── hello_world
├── hello_world_bsp
├── Pong_Code
│ ├── Display.h
│ ├── Main.c
│ └── structs.h
└── Pong_Code_bsp
This diagram shows all the implemented parts and the singnals to connect them. The implementation is split in pysical Hareware, programmable logic as VHDL and instruction based C software.
Below are shown the two main processes that are implemented in VHDL. They run simultanously and independent of each other. All processes and the synthesized CPU are connected to a common 50 MHz clock and a reset signal. When reset, all processes are asynchronously forced to output their default values, as seen in the first block.
The matrix multiplexing timer has been sized regarding the following equations:
50Mhz / 2**20 = 1526 Hz
1 / 1526 Hz = 0.66 ms
The matrix instruction contains 20 bits that are split in three parts:
20 16 12 8 4 0
XXXX CCCC RRRR RRRR RRRR
Symbol | Bit range | Description |
---|---|---|
X | 19 downto 16 | unused |
C | 15 downto 12 | column number |
R | 11 downto 0 | row data |
The column number can be one of the following values:
Below images show flowcharts for all featured software functions. Fist chart feature the main game function. Subfunctions are described below. See:
This is the flowchart of the draw function. This function outputs the virtual screen to the matrix instruction register to be processed by VHDL.
Flowchart of reset_position function. Function to reset positions of both paddles and ball to default. Default positions and values can be adjusted in this function
Flowchart of reset_screen function. Function to reset all pixels of the virtual screen to 0.