Skip to content

acwright/6502-ASM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

6502-ASM

Assembly code for the A.C. Wright 6502 project.

Building Programs

Each program directory contains its own Makefile. To build a program, navigate to its directory and use make.

Prerequisites

CC65 Compiler

On macOS, install via Homebrew:

brew install cc65

For other platforms or installation methods, refer to the cc65 project.

bin2woz

Install from NPM (recommended):

npm install -g bin2woz

Or build from source:

  1. Clone the repository:

    git clone https://github.com/acwright/bin2woz.git
    cd bin2woz
  2. Install dependencies and build:

    npm install
    npm run build
  3. Link globally (optional):

    npm link

For more information, see the bin2woz project.

Available Targets

  • make or make all - Build the program
  • make view - Display hexdump of the built program
  • make woz - Create a Wozmon compatible file using bin2woz
  • make clean - Remove build artifacts

Example

cd <directory-name>
make        # Build the program
make view   # View the hexdump
make woz    # Create a Wozmon compatible file

About

Assembly code for the A.C. Wright 6502 project

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors