SuperJMN / 6502.Net

A .Net-based Cross-Assembler for Several 8-Bit Microprocessors

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

6502.Net, A .Net-Based Cross-Assembler for Several 8-Bit Microprocessors.

Version 3.2.2.1

Overview

example

The 6502.Net Macro Assembler is a cross-assembler targeting several CPUs from the 8-bit era of computing including the MOS 6502 and its variants, the Motorola M6800 and M6809, the Intel i8080, and the Zilog Z80. It has several advanced features, such as conditional assembly, macros and custom defined fuctions. With the aim of cross-platform compatibility, it is targeted for .Net 5, but is compatible with .Net Core 3.1.

Invoke the assembler from the command line like so:

6502.Net.exe myprg.asm (Windows)

dotnet 6502.Net.dll myprg.asm (macOS/Linux)

To specify output file name use the -o <file> or --output=<file> option.

As with other assemblers, source statements are typically in the format:

label   mnemonic    operands

Comments are either C/C++ style /*/*/ for block comments, or // for line comments. For compatibillty purposes, semi-colons can also be used for line comments.

For full usage, please see the wiki.

About

A .Net-based Cross-Assembler for Several 8-Bit Microprocessors

License:MIT License


Languages

Language:C# 97.7%Language:ANTLR 2.3%Language:Assembly 0.0%