IS1500 Computer Organization and Components, 9 credits at KTH Royal Institute of Technology
Code primarily developed by Tenzin Sangpo Choedon, Autumn 2023 (republished)
Skeleton code (gameplay.S, stubs.c, vectors.S) provided by Axel Isaksson and F Lundevall at KTH as clearly stated at the top of the specified files
This project implements pacman game logic on a uno32 chipkit board.
root/
βββ src/ # C source codes
βββ pixil-images/ # Pixelated images and python script for generating bitmaps from these images
βββ pixil-files/ # Pixil files used in https://www.pixilart.com/draw#
βββ README.md
GCC
- Required GNU Compiler Collection:
sudo apt install gcc
Make
- Install make using:
sudo apt install make
Run the scripts in this order:
- Generate pixmaps from images
python3 genpix.py map.png
- Set up environment and build project
cd . /opt/mcb32tools/environment/ make
- Install compiled code to the uno32 board
make install TTYDEV=/dev/ttyUSB0