npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@neshacker/6502-tools

v0.1.0

Published

JavaScript utilities for 6502 software development.

Downloads

12

Readme

6502

JavaScript utilities for 6502 programming.

Installation

npm install @neshacker/6502-tools

Assembler

The package includes a basic 6502 assembler with support for basic variable assignment, a handful of assembler commands, and all core 6502 instruction addressing modes.

The assembler is very early in development and is not fully featured but it does work well for some basic tasks, such as converting assembly to hex-strings for use with a hex editor, etc. For larger tasks or projects please use a more mature assembler such as ca65.

API Reference

Assembler.inspect(source)

Parses and assembles the given source into a linear intermediate representation then outputs the results of the parse to the console.

const { Assembler } = require('@neshacker/6502-tools')
const source = `
  my_routine = $ACDC
  .org $BD17
  another_routine:
    lda #22
    jsr my_routine
    rts
`
// Assemble and inspect the source
Assembler.inspect(source)
BD17 another_routine:
BD17 A916        lda #22
BD19 20DCAC      jsr my_routine
BD1C 60          rts

Assembler.inspectFile(path)

Same as Assember.inspect but instead converts the source found in the file with the given path.

Assembler.toHexString(source)

Converts the given assembly source into a string of hexadecimal digits for use with a hex editor.

const { Assembler } = require('@neshacker/6502-tools')
const source = `
  my_routine = $ACDC
  .org $BD17
  another_routine:
    lda #22
    jsr my_routine
    rts
`
// Assemble and inspect the source
Assembler.toHexString(source)
A91620DCAC60

Assembler.fileToHexString(source)

Same as Assembler.toHexString but instead converts the source found in the file with the given path.

Commands

.addr

This command set the absolute program address at the point of invocation. It is useful for defining patch segements for ROM hacks.

; Set the absolute program offset to $C000
.org $C000
  lda #0      ; Address $C000
  @loop:      ; Address = $C002
  dex         ; Address = $C002
  bne @loop   ; Address = $C003, branch to @loop on zero flag

.byte

This defines a run of arbitrary bytes to be processed by the assembler. Useful for defining lookup tables or text segments.

.byte 16, 32, 64   ; Literal bytes: $10, $20, $40
.byte "Hello"      ; Literal bytes: $48, $65, 6C, $6C, $6F

License

MIT