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

prettydasm

v2.0.1

Published

Prettify disassemblies from MAME

Downloads

13

Readme

prettydasm

A tool to format text disassemblies into readable HTML tables.

See http://sudden-desu.net/prettydasm for an example.

Installation

Clone the git repository or install via npm:

npm install prettydasm

Usage

Written in plain JavaScript; no framework/library dependencies.

Place the disassmbly text inside a PRE element and add class 'pdasm' to the element. When the page loads, these elements will be converted to tables.

Alternatively, you can disable the auto_process setting and manually call make_pretty_dasm(elem) with a reference to a specific element. It will return a reference to the newly created formatted table.

Format

The code is meant to work with disassemblies from MAME, though it will work with any code formatted like this:

address   opcode   args    comments
0F020012: moveq    #1, D6  ; put 1 into register d6

Symbols

In the arguments field, you can define symbols on hexadecimal values. These symbols will replace the hex in the output, with the original value visible by hovering the mouse over the symbol.

The symbol should be wrapped in curly braces and should immediately follow the hex value. Example:

003952: move.w  #$0, $1c2000.l{symbol_name}

Comments

Comments can be added to specific lines by appending a semicolon to the end of the line. Example:

003998: jsr     $8e64.l ; jump to the subroutiune at 0x8E64

The comment text is collapsed into a user-defined HTML block (see comment_content setting) in order to save space, and the comment will be visible on mouse hover.

Architectures/CPUs

The hardware architecture from which the disassembly originates can be specified to allow for more detailed formatting. In particular, this adds support for identifying hardware registers. This is done by adding the appropriate CSS class to the PRE element. Example:

<pre class='pdasm pdasm-arch-m68k'> ... </pre>

The current built in architectures are as follows:

  • Motorole M68000 : pdasm-arch-m68k
  • Hitachi/Renesas SH-2 : pdasm-arch-sh2
  • Zilog Z80 : pdasm-arch-z80
  • MOS 6502 : pdasm-arch-6502
  • Intel i960 : pdasm-arch-i960
  • Hitachi/Renesas H8 : pdasm-arch-h8
  • Intel 8086/8088 : pdasm-arch-8086
  • Intel x86 (32bit) : pdasm-arch-x86
  • ARM : pdasm-arch-arm

If an architecture if not specified, no register formatting is performed and hex values are assumed to have prefixed notation with either $ or 0x.

New architecture definitions can be added to the archs object. This is documented in the source.

Configuration

User configuration is set at the top of the .js file.

auto_process (boolean)

Automatically convert all PRE elements with class 'pdasm' to formatted tables on page load. If set to false, you will need to manually call make_pretty_dasm(elem) on specific PRE elements.

comment_content (string)

Defines the content that will appear in the last column when a comment is collapsed. This can be plain text or HTML (e.g. an IMG tag).

override_hex_notation (string)

Replaces all hex notation with the specified string. Set to null to disable.

override_hex_postfix (boolean)

Forces architectures with postfixed hex notation to display prefixed instead.

capitalize_hex (boolean)

Force all hex values to be capital.

capitalize_hex_sizes (boolean)

Force all size specifiers on hex values to be capital. (e.g. $12F0.l -> $12F0.L)

add_arch_caption (boolean)

When true, adds a caption to the table element with the architecture name.

CSS Classes/IDs

table.pdasm - Styles all prettydasm formatted tables

table.pdasm-arch-xxxx - Where xxxx is the name of the architecture; styles all prettydasm formatted tables that match the architecture

span.pdasm-hex-notation - Styles the hexadecimal notation

span.pdasm-hex-value - Styels the hexadecimal value

span.pdasm-hex-size - Styles the size postfix on a hex value

span.pdasm-symbol - Styles a symbol substitution

span.pdasm-reg - Styles the hardware registers

td.pdasm-comment - Styles the comment marker

div#pdasm-commentbox - Styles the popup box for comments

div#pdasm-symbolbox - Styles the popup box for symbols

In order to reduce bloat on the generated HTML, there are no class names created for the adress and opcode columns. These can be selected by using the first-child/nth-child pseudo selectors on the table rows, e.g.:

.pdasm > tr td:first-child

.pdasm > tr td:nth-child(2)