Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bgourlie/6502-disasm
A 6502 disassembler written in TypeScript.
https://github.com/bgourlie/6502-disasm
Last synced: 24 days ago
JSON representation
A 6502 disassembler written in TypeScript.
- Host: GitHub
- URL: https://github.com/bgourlie/6502-disasm
- Owner: bgourlie
- Created: 2016-10-10T05:51:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-21T16:13:17.000Z (about 7 years ago)
- Last Synced: 2024-11-29T18:35:44.803Z (about 1 month ago)
- Language: TypeScript
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 6502-disasm [![Build Status](https://travis-ci.org/bgourlie/6502-disasm.svg?branch=master)](https://travis-ci.org/bgourlie/6502-disasm)
A 6502 disassembler written in TypeScript.### Usage
const d = require("6502-disasm");
const disasm = new d.Disassembler(new Uint8Array([0x61, 0xFA]));
disasm.decode(); // Outputs [ 'ADC ($FA,X)' ]