Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.54 KB

File metadata and controls

43 lines (34 loc) · 1.54 KB

Atari 800 XL assembler code demos

Overview

Some examples i collected while learing assembler for the Atari 800 XL

  • dli1 - DLI Sample from german Atari Magazine
  • dli2 - DLI Sample from german Atari Magazine
  • dli3 - DLI Sample from german Atari Magazine
  • dli4 - DLI Sample from german Atari Magazine
  • dli6 - DLI Sample from german Atari Magazine
  • hello - DLI text sample
  • weganoid - Game from german Atari Magazine

Usage

  1. Install mads assembler into your path
  2. Install atari800 emulator into your path
  3. Create helper scripts into your path to start the emulator
#!/bin/sh
ATARI_PATH="~/Devel/arch/atari"
${ATARI_PATH}/bin/atari800 -pal -xe -xlxe_rom ${ATARI_PATH}/roms/ATARIXL.ROM -video-accel -win-width 800 -win-height 600 "$1"
  1. Build and run an example
cd hello 
make all

Links

  • mads - MADS multi-pass crossassembler
  • atari800 - Atari800 portable and free Atari 8-bit emulator