Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bontail/assemblerball
2D game
https://github.com/bontail/assemblerball
arm arm-assembly arm-assembly-language arm64 assembler assembly assembly-language assembly-language-programming python sdl2 socket
Last synced: 21 days ago
JSON representation
2D game
- Host: GitHub
- URL: https://github.com/bontail/assemblerball
- Owner: bontail
- License: mit
- Created: 2024-08-01T16:00:50.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-08-24T10:41:13.000Z (6 months ago)
- Last Synced: 2025-01-21T19:49:02.039Z (21 days ago)
- Topics: arm, arm-assembly, arm-assembly-language, arm64, assembler, assembly, assembly-language, assembly-language-programming, python, sdl2, socket
- Language: Assembly
- Homepage:
- Size: 1.75 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# AssemblerBall
#### 2D game written in ARM Assembly with SDL2
![AssemblerBall Process](AssemblerBallProcess.gif)
### Git
```shell
git clone https://github.com/bontail/AssemblerBall.git
```To run the game, you will need to have SDL2 library, Python, Cmake installed on your system.
You can install SDL2 library using your system's package manager or by downloading them from their respective websites.### Run
```shell
make start_server
```
Open a second terminal window.```shell
mkdir build && cd build
cmake .. && cmake --build .
./AssemblerBall
```