Game made in 6800 Assembly language

This game has Boba Fett from Star Wars on Mustafar, picking up blue orbs. It was made wholly by me for the 68000 processor.

The project was entirely coded in the Easy68K application. Hence, I had to use trap codes for rendering the images to screen, pixel by pixel, rather than using a video buffer. For this reason, optimization of the code was a primary concern in this project.

  • I used double buffering to eliminate screen tearing.
  • Fixed point math was needed for physics calculations.
  • A custom seven segment number display was used for the score.
Source Code