1.0.1 • Published 8 years ago

asm-tag v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

asm-tag

A toy ES6 template tag to take assembler and compile it into an executable function. All credit goes to Fedor Indutny and Tommi Pisto for jit.js and pasm, respectively.

'use strict'

const asm = require('./lib/asm-tag.js')

const fn = asm`
  [bits 64]
  mov rbx, [rbp-16]
  add rax, rbx
`

console.log(fn(203, 14))  // 217, if everything went according to plan!

License

MIT

1.0.1

8 years ago

1.0.0

8 years ago