A simple DASM assembler library for creating small QR codes
Go to file
thrust26 7ea611d678 minor polishing 2021-04-17 10:01:16 +02:00
.gitignore added missing files 2021-04-11 10:33:25 +02:00
FuncDataV2.inc added function module drawing 2021-04-14 23:23:39 +02:00
FuncDataV2S.inc added function module drawing 2021-04-14 23:23:39 +02:00
GenPoly.asm added more QR code combinations & generator polygons 2021-04-11 12:53:18 +02:00
LICENSE Create LICENSE 2021-04-15 16:54:48 +02:00
QR-Code.png updated picture 2021-04-15 14:16:56 +02:00
QRCodeGen.inc slightly improved instructions 2021-04-16 08:33:57 +02:00
QRCodeGenDemo.asm minor polishing 2021-04-17 10:01:16 +02:00
README.md Update README.md 2021-04-15 16:56:01 +02:00
instructions.txt minor polishing 2021-04-17 10:01:16 +02:00
vcs.h added missing files 2021-04-11 10:33:25 +02:00

README.md

6502-QR-code-generator

A simple and free DASM assembler library for creating small QR codes

Introduction

This project provides a simple QR code generator for the 650x family.

Note: The code is mostly specifically taylored for the Atari 2600 and a version 2 QR code. Other platforms or QR code versions have not been tested. But it should be adaptable without too major problems (see instructions.txt).

If you make use of my code or have questions, please let me know.

Features

  • easy to use DASM macros
  • assembler switches to taylor generator to your needs
  • code optimized for minimal RAM and ROM space
  • all eight mask pattern supported
  • Atari 2600 demo code (randomly generates some Atari 2600 related messages)
  • generator code for Reed-Solomon ECC generator polygons accompanied (can also be integrated to compute on-the-fly)

Limitations

  • only small (versions 1, 2 and 3), single block QR codes supported
  • only byte mode supported
  • no automatic mask pattern evaluation
  • tested only for version 2 QR codes (25x25)
  • memory organization has to be implemented platform specific