pioasm
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

pioasm-wasm

Raspberry Pi Pico pioasm tool compiled to Web Assembly.

Online pioasm

The online version of pioasm allows you to compile PIO assembly code to C/Python/Ada right in your browser:

https://wokwi.com/tools/pioasm

Library usage example

You can install the library from npm:

npm install --save pioasm

or yarn:

yarn add pioasm

Usage example:

import { PIOAssembler } from 'pioasm';

const source = `
  .program blink
  pull block
  out y, 32
`;

const pioasm = new PIOAssembler();
pioasm.assemble(source).then(result => {
  console.log(result.output);
})

License

This project, excluding pioasm, is released under the MIT license. Consult the LICENSE file for more details.

Package Sidebar

Install

npm i pioasm

Weekly Downloads

24

Version

2.0.0

License

MIT

Unpacked Size

622 kB

Total Files

9

Last publish

Collaborators

  • urish