Skip to main content

Assemblers/Disassemblers for retro processors (Z80, 6502, 6809, etc)

Project description

Opcode Tools

Known CPUs

  • 6502
  • 6803
  • 6809
  • 8052
  • DVG (Atari vector generator used in OmegaRace, Asteroids, etc)
  • Z80
  • Z80GB (Z80 variant used in the Nintendo GameBoy)

Disassembler

py -m opcodetools.dasm Z80 0 "test1.bin+test2.bin"
  • CPU
  • Origin
  • One or more files that make up the binary

Assembler

py -m opcodetools.asm hello.asm

See the Example Input below.

The assembler recognizes four different kinds of text lines:

  • A blank line (ignored)
  • A label: a single word/number ending with a ":"
  • A directive: a line beginning with a "."
  • Everything else is a line of assembly opcodes

Comments

  LD  A,5  ; Five rows per object

Everything after a ";" on a line is ignored as a comment. Lines that begin with a ";" are seen as blank lines (ignored).

Includes

.include hardware.asm

Key/Value Constants

._CPU = Z80
.CONST_A = 0x20

KEY = VALUE pairs. Keys that begin with "_" are meant for the assembler.

Data Definition

Bytes

. 0x01,2,3,4,0x05

Words

.word 0x01,0x1234

Example Input

; Example assembly input

.include hardware.asm

._CPU = Z80
.CONST_A = 0x20

0x8000:
Start:

   LD  A,0x23     ; constant
   LD  A,(0x10)   ; memory location
   LD  HL,(DataB) ; memory location
   LD  HL,DataA   ; constant
   LD  E,CONST_A  ; constant
   JP  Start

DataA:
. 0x10,0x20,0x30

DataB:
. 0x40,0x50

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

opcodetools-1.5.tar.gz (33.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

opcodetools-1.5-py3-none-any.whl (37.2 kB view details)

Uploaded Python 3

File details

Details for the file opcodetools-1.5.tar.gz.

File metadata

  • Download URL: opcodetools-1.5.tar.gz
  • Upload date:
  • Size: 33.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.5

File hashes

Hashes for opcodetools-1.5.tar.gz
Algorithm Hash digest
SHA256 898f0f73f54981de11e5bbaa3f7d82df99e0067b00d4f44b3943511d628fc7c1
MD5 2c99e81219c04f402e88812c497845e7
BLAKE2b-256 c6cf5ff385b5a984c747e1b1f79a369e73dd8e042fc2cd0932e8a69c4ea99bc5

See more details on using hashes here.

File details

Details for the file opcodetools-1.5-py3-none-any.whl.

File metadata

  • Download URL: opcodetools-1.5-py3-none-any.whl
  • Upload date:
  • Size: 37.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.5

File hashes

Hashes for opcodetools-1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 e466b8df5a162ae45f2d852e85ec757e067c36801ea3bee011a236cfc71614ae
MD5 4d2e1f7be46c14923c0cf3f9b652f2b0
BLAKE2b-256 673bd2e2dd1ca6b5a48087e89b68c8207dac03e87c84401529380df96783628a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page