Skip to content

Latest commit

 

History

History
106 lines (77 loc) · 3.52 KB

README.md

File metadata and controls

106 lines (77 loc) · 3.52 KB

Attack of the Mutant Camels (1983) by Jeff Minter

This is the source code for different versions of Attack of the Mutant Camels by Jeff Minter.

Playing the Games Online

C64: (Ctrl key is 'Fire', Arrow Keys to move.)

Atari800: (Alt key is 'Fire', Arrow Keys to move.)

Building the C64 Source Code

Requirements

  • VICE - The most popular C64 emulator
  • 64tass - An assembler for 6502 source code.

Setup

On Ubuntu you can install VICE as follows:

sudo apt install vice

Compiling

To compile and run:

$ make

To just compile the game and get a binary (amc.prg) do:

$ make amc.prg

Building the Atari-8 bit Source Code

Requirements

Compiling

To compile and run:

$ make runatari

To just compile the game and get a binary (aomc.xex) do:

$ make aomc.xex

Building the Konix Source Code

This is the source code for the 1989 work-in-progress of Attack of the Mutant Camels for the Konix Multisystem by Jeff Minter.

The code is released with the kind permission of its original author - Jeff Minter

Requirements

Compiling

To compile and run it do:

$ make runkonix

The compiled game is written to the bin folder.

To just compile the game and get a binary (aomc.p88) do:

$ make aomc.p88

This repository is forked from https://github.com/SavourySnaX/AOTMC89.