Skip to content

optixx/atari800xl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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